tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
ldacbt: split headers to "dev" output
Sergei Trofimovich
2 years ago
752e62b4
2f5fa4a6
+7
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
ldacbt
default.nix
+7
pkgs/development/libraries/ldacbt/default.nix
···
15
fetchSubmodules = true;
16
};
17
0
0
18
nativeBuildInputs = [
19
cmake
0
0
0
0
0
20
];
21
22
meta = with lib; {
···
15
fetchSubmodules = true;
16
};
17
18
+
outputs = [ "out" "dev" ];
19
+
20
nativeBuildInputs = [
21
cmake
22
+
];
23
+
24
+
cmakeFlags = [
25
+
# CMakeLists.txt by default points to $out
26
+
"-DINSTALL_INCLUDEDIR=${placeholder "dev"}/include"
27
];
28
29
meta = with lib; {