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