Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ldacbt: split headers to "dev" output

+7
+7
pkgs/development/libraries/ldacbt/default.nix
··· 15 fetchSubmodules = true; 16 }; 17 18 nativeBuildInputs = [ 19 cmake 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; {