mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-11 22:49:56 +08:00
10 lines
336 B
Nix
10 lines
336 B
Nix
{ stdenv, cmake, pkg-config, ftxui, biu, bsubConfig ? null, lib }: stdenv.mkDerivation
|
|
{
|
|
name = "chn-bsub";
|
|
src = ./.;
|
|
buildInputs = [ ftxui biu ];
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
postInstall = "ln -s chn-bsub $out/bin/chn_bsub";
|
|
cmakeFlags = lib.optional (bsubConfig != null) [ "-DBSUB_CONFIG=${bsubConfig}" ];
|
|
}
|