Files
nixos/local/pkgs/chn-bsub/default.nix
2024-06-22 15:55:31 +08:00

13 lines
314 B
Nix

{
stdenv, lib, sbatchConfig ? null, substituteAll, runCommand,
cmake, pkg-config, ftxui, biu, nlohmann_json
}:
stdenv.mkDerivation
{
name = "chn-bsub";
src = ./.;
buildInputs = [ ftxui biu nlohmann_json ];
nativeBuildInputs = [ cmake pkg-config ];
postInstall = "ln -s chn-bsub $out/bin/chn_bsub";
}