mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-11 17:29:30 +08:00
9 lines
266 B
Nix
9 lines
266 B
Nix
{ stdenv, lib, sbatchConfig ? null, runCommand, cmake, pkg-config, ftxui, biu }: stdenv.mkDerivation
|
|
{
|
|
name = "chn-bsub";
|
|
src = ./.;
|
|
buildInputs = [ ftxui biu ];
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
postInstall = "ln -s chn-bsub $out/bin/chn_bsub";
|
|
}
|