about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/nix/nixos-option/default.nix
blob: 216e2678e2e2ded7e10f9313477c569572c91c93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{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 ];
  };
}