Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 21 lines 420 B view raw
1{ 2 lib, 3 mkKdeDerivation, 4 fetchurl, 5 pkg-config, 6 fuse3, 7}: 8mkKdeDerivation rec { 9 pname = "kio-fuse"; 10 version = "5.1.0"; 11 12 src = fetchurl { 13 url = "mirror://kde/stable/kio-fuse/kio-fuse-${version}.tar.xz"; 14 hash = "sha256-fRBFgSJ9Whm0JLM/QWjRgVVrEBXW3yIY4BqI1kRJ6Us="; 15 }; 16 17 extraNativeBuildInputs = [ pkg-config ]; 18 extraBuildInputs = [ fuse3 ]; 19 20 meta.license = with lib.licenses; [ gpl3Plus ]; 21}