Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 22 lines 272 B view raw
1{ 2 mkKdeDerivation, 3 qt5compat, 4 qttools, 5 acl, 6 attr, 7}: 8mkKdeDerivation { 9 pname = "kio"; 10 11 patches = [ 12 # Allow loading kio-admin from the store 13 ./allow-admin-from-store.patch 14 ]; 15 16 extraBuildInputs = [ 17 qt5compat 18 qttools 19 acl 20 attr 21 ]; 22}