3b21d1e521
GitOrigin-RevId: 23cd13167a1432550e48734079c2ffeeb441fb96
12 lines
301 B
Nix
12 lines
301 B
Nix
{lib, stdenv, boost, cmake, pkg-config, nix, ... }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "nixos-option";
|
|
src = ./.;
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ boost nix ];
|
|
meta = with lib; {
|
|
license = licenses.lgpl2Plus;
|
|
maintainers = with maintainers; [ chkno ];
|
|
};
|
|
}
|