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

8 lines
210 B
Nix
Raw Normal View History

2024-06-08 20:35:25 +08:00
{ 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 ];
}