nixos/local/pkgs/sbatch-tui/default.nix

8 lines
210 B
Nix

{ stdenv, cmake, pkg-config, fmt, ftxui, boost, range-v3 }: stdenv.mkDerivation
{
name = "sbatch-tui";
src = ./.;
buildInputs = [ fmt ftxui boost range-v3 ];
nativeBuildInputs = [ cmake pkg-config ];
}