Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 21 lines 403 B view raw
1{ 2 lib, 3 mkKdeDerivation, 4 fetchurl, 5}: 6mkKdeDerivation rec { 7 pname = "plasma-wayland-protocols"; 8 version = "1.18.0"; 9 10 src = fetchurl { 11 url = "mirror://kde/stable/plasma-wayland-protocols/plasma-wayland-protocols-${version}.tar.xz"; 12 hash = "sha256-JWdHJnGtXZifiLUbrvndWTU6Xnw/LtfmuYl1XLkAQjM="; 13 }; 14 15 meta.license = with lib.licenses; [ 16 bsd3 17 cc0 18 lgpl21Plus 19 mit 20 ]; 21}