mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
47994c31af
https://github.com/mate-desktop/mate-common/compare/v1.26.0...v1.28.0 Also uses stdenvNoCC.
28 lines
669 B
Nix
28 lines
669 B
Nix
{ lib
|
|
, stdenvNoCC
|
|
, fetchurl
|
|
, mateUpdateScript
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "mate-common";
|
|
version = "1.28.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "QrfCzuJo9x1+HBrU9pvNoOzWVXipZyIYfGt2N40mugo=";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru.updateScript = mateUpdateScript { inherit pname; };
|
|
|
|
meta = with lib; {
|
|
description = "Common files for development of MATE packages";
|
|
homepage = "https://mate-desktop.org";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = teams.mate.members;
|
|
};
|
|
}
|