Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 28 lines 665 B view raw
1{ 2 lib, 3 stdenvNoCC, 4 fetchurl, 5 mateUpdateScript, 6}: 7 8stdenvNoCC.mkDerivation rec { 9 pname = "mate-common"; 10 version = "1.28.0"; 11 12 src = fetchurl { 13 url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 14 sha256 = "QrfCzuJo9x1+HBrU9pvNoOzWVXipZyIYfGt2N40mugo="; 15 }; 16 17 enableParallelBuilding = true; 18 19 passthru.updateScript = mateUpdateScript { inherit pname; }; 20 21 meta = with lib; { 22 description = "Common files for development of MATE packages"; 23 homepage = "https://mate-desktop.org"; 24 license = licenses.gpl3Plus; 25 platforms = platforms.unix; 26 teams = [ teams.mate ]; 27 }; 28}