mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-12 07:29:23 +08:00
9 lines
285 B
Nix
9 lines
285 B
Nix
{ lib, stdenv, cmake, pkg-config, configFile ? null, slurm, biu }: stdenv.mkDerivation
|
|
{
|
|
name = "info";
|
|
src = ./.;
|
|
buildInputs = [ slurm biu ];
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
cmakeFlags = lib.optional (configFile != null) [ "-DINFO_CONFIG_FILE=${configFile}" ];
|
|
}
|