depot/third_party/nixpkgs/pkgs/tools/nix/nixos-option/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

38 lines
583 B
Nix

{ 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;
mainProgram = "nixos-option";
maintainers = with maintainers; [ ];
inherit (nix.meta) platforms;
};
}