about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/nix/nixos-option/default.nix
blob: 7cca1eb7b38d521da8e9abb614cae4845ecaff67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ lib
, stdenv
, boost
, cmake
, pkg-config
, installShellFiles
, nix
}:

stdenv.mkDerivation {
  name = "nixos-option";

  src = ./.;
  postInstall = ''
    installManPage ${./nixos-option.8}
  '';

  strictDeps = true;
  nativeBuildInputs = [
    cmake
    pkg-config
    installShellFiles
  ];
  buildInputs = [
    boost
    nix
  ];
  cmakeFlags = [
    "-DNIX_DEV_INCLUDEPATH=${nix.dev}/include/nix"
  ];

  meta = with lib; {
    license = licenses.lgpl2Plus;
    maintainers = with maintainers; [ ];
    inherit (nix.meta) platforms;
  };
}