nixos/packages/sbatch-tui/default.nix
2024-08-01 00:25:23 +08:00

14 lines
391 B
Nix

{
stdenv, lib, sbatchConfig ? null, substituteAll, runCommand,
cmake, pkg-config, ftxui, biu
}:
stdenv.mkDerivation
{
name = "sbatch-tui";
src = ./.;
preConfigure = lib.optionalString (sbatchConfig != null)
"cp ${substituteAll ({ src = ./src/device.cpp.template; } // sbatchConfig)} src/device.cpp";
buildInputs = [ ftxui biu ];
nativeBuildInputs = [ cmake pkg-config ];
}