Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 21 lines 291 B view raw
1{ 2 mkDerivation, 3 extra-cmake-modules, 4 karchive, 5 kcoreaddons, 6 kservice, 7 qtbase, 8}: 9 10mkDerivation { 11 pname = "kemoticons"; 12 nativeBuildInputs = [ extra-cmake-modules ]; 13 buildInputs = [ 14 karchive 15 kcoreaddons 16 ]; 17 propagatedBuildInputs = [ 18 kservice 19 qtbase 20 ]; 21}