1{lib, stdenv, boost, cmake, pkg-config, nix, ... }:
2stdenv.mkDerivation rec {
3 name = "nixos-option";
4 src = ./.;
5 nativeBuildInputs = [ cmake pkg-config ];
6 buildInputs = [ boost nix ];
7 meta = with lib; {
8 license = licenses.lgpl2Plus;
9 maintainers = with maintainers; [ chkno ];
10 };
11}