base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / nix / nixos-option / default.nix
blobdb6c974288c8d8d03a67149f731127bc48f34f51
2   lib,
3   stdenv,
4   boost,
5   meson,
6   ninja,
7   pkg-config,
8   installShellFiles,
9   nix,
12 stdenv.mkDerivation {
13   name = "nixos-option";
15   src = ./.;
17   postInstall = ''
18     installManPage ../nixos-option.8
19   '';
21   strictDeps = true;
23   nativeBuildInputs = [
24     meson
25     ninja
26     pkg-config
27     installShellFiles
28   ];
29   buildInputs = [
30     boost
31     nix
32   ];
34   meta = with lib; {
35     license = licenses.lgpl2Plus;
36     mainProgram = "nixos-option";
37     maintainers = [ ];
38     inherit (nix.meta) platforms;
39   };