mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-12 01:55:22 +08:00
9 lines
312 B
Nix
9 lines
312 B
Nix
{ lib, stdenv, cmake, pkg-config, biu, configFile ? null, httplib, sqlgen }: stdenv.mkDerivation
|
|
{
|
|
name = "missgram";
|
|
src = ./.;
|
|
buildInputs = [ biu httplib sqlgen ];
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
cmakeFlags = lib.optional (configFile != null) [ "-DMISSGRAM_CONFIG_FILE=${configFile}" ];
|
|
}
|