48d4c8cc3c
GitOrigin-RevId: 6ef4f522d63f22b40004319778761040d3197390
13 lines
332 B
Nix
13 lines
332 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 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|