repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git]
/
pkgs
/
tools
/
nix
/
nixos-option
/
default.nix
blob
db6c974288c8d8d03a67149f731127bc48f34f51
1
{
2
lib,
3
stdenv,
4
boost,
5
meson,
6
ninja,
7
pkg-config,
8
installShellFiles,
9
nix,
10
}:
11
12
stdenv.mkDerivation {
13
name = "nixos-option";
14
15
src = ./.;
16
17
postInstall = ''
18
installManPage ../nixos-option.8
19
'';
20
21
strictDeps = true;
22
23
nativeBuildInputs = [
24
meson
25
ninja
26
pkg-config
27
installShellFiles
28
];
29
buildInputs = [
30
boost
31
nix
32
];
33
34
meta = with lib; {
35
license = licenses.lgpl2Plus;
36
mainProgram = "nixos-option";
37
maintainers = [ ];
38
inherit (nix.meta) platforms;
39
};
40
}