Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 32 lines 429 B view raw
1{ 2 mkDerivation, 3 lib, 4 extra-cmake-modules, 5 kconfig, 6 ki18n, 7 kservice, 8 kxmlgui, 9}: 10 11mkDerivation { 12 pname = "libkipi"; 13 meta = { 14 license = with lib.licenses; [ 15 gpl2 16 lgpl21 17 bsd3 18 ]; 19 maintainers = [ lib.maintainers.ttuegel ]; 20 }; 21 nativeBuildInputs = [ extra-cmake-modules ]; 22 buildInputs = [ 23 kconfig 24 ki18n 25 kservice 26 kxmlgui 27 ]; 28 outputs = [ 29 "out" 30 "dev" 31 ]; 32}