nixos/local/pkgs/hpcstat/default.nix

19 lines
704 B
Nix
Raw Normal View History

2024-05-05 12:58:35 +08:00
{
stdenv, cmake, pkg-config, standalone ? false, makeWrapper,
2024-05-05 22:29:06 +08:00
boost, fmt, sqlite-orm, nlohmann_json, zpp-bits, range-v3, nameof, openssh, sqlite, date, openxlsx, httplib, openssl
2024-05-05 12:58:35 +08:00
}: stdenv.mkDerivation
{
name = "hpcstat";
src = ./.;
2024-05-05 22:29:06 +08:00
buildInputs =
[ boost fmt sqlite-orm nlohmann_json zpp-bits range-v3 nameof sqlite date openxlsx httplib openssl.dev ];
2024-05-05 12:58:35 +08:00
nativeBuildInputs = [ cmake pkg-config makeWrapper ];
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
'';
}