nixos/local/pkgs/hpcstat/default.nix

19 lines
740 B
Nix
Raw Normal View History

2024-05-05 12:58:35 +08:00
{
2024-05-05 14:29:10 +08:00
stdenv, cmake, pkg-config, standalone ? false, makeWrapper, version ? null, lib,
2024-05-05 14:20:53 +08:00
boost, fmt, sqlite-orm, nlohmann_json, zpp-bits, range-v3, nameof, openssh, sqlite
2024-05-05 12:58:35 +08:00
}: stdenv.mkDerivation
{
name = "hpcstat";
src = ./.;
2024-05-05 14:20:53 +08:00
buildInputs = [ boost fmt sqlite-orm nlohmann_json zpp-bits range-v3 nameof sqlite ];
2024-05-05 12:58:35 +08:00
nativeBuildInputs = [ cmake pkg-config makeWrapper ];
2024-05-05 14:29:10 +08:00
cmakeFlags = lib.optionals (version != null) [ ''-DHPCSTAT_VERSION="${version}"'' ];
2024-05-05 12:58:35 +08:00
postInstall =
if standalone then "cp ${openssh}/bin/{ssh-add,ssh-keygen} $out/bin"
else
''
wrapProgram $out/bin/hpcstat --set HPCSTAT_SHAREDIR $out/share/hpcstat \
--set HPCSTAT_DATADIR /var/lib/hpcstat --set HPCSTAT_SSH_BINDIR ${openssh}/bin
'';
}