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