Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 34 lines 470 B view raw
1{ 2 mkDerivation, 3 lib, 4 extra-cmake-modules, 5 kdoctools, 6 qtbase, 7 qtdeclarative, 8 qttools, 9}: 10 11mkDerivation { 12 pname = "kholidays"; 13 meta = { 14 license = with lib.licenses; [ 15 gpl2Plus 16 lgpl21Plus 17 fdl12Plus 18 ]; 19 maintainers = with lib.maintainers; [ bkchr ]; 20 }; 21 nativeBuildInputs = [ 22 extra-cmake-modules 23 kdoctools 24 ]; 25 buildInputs = [ 26 qtbase 27 qtdeclarative 28 qttools 29 ]; 30 outputs = [ 31 "out" 32 "dev" 33 ]; 34}