2022-07-12 12:56:56 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, mateUpdateScript
|
|
|
|
}:
|
2016-05-30 19:29:09 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mate-common";
|
2021-08-06 20:08:18 +01:00
|
|
|
version = "1.26.0";
|
2016-05-30 19:29:09 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-15 13:21:58 +00:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2021-08-06 20:08:18 +01:00
|
|
|
sha256 = "014wpfqpqmfkzv81paap4fz15mj1gsyvaxlrfqsp9a3yxw4f7jaf";
|
2016-05-30 19:29:09 +01:00
|
|
|
};
|
|
|
|
|
2020-02-14 21:52:51 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2022-09-27 22:39:18 +01:00
|
|
|
passthru.updateScript = mateUpdateScript { inherit pname; };
|
2021-04-02 20:58:16 +01:00
|
|
|
|
2021-09-21 20:45:29 +01:00
|
|
|
meta = with lib; {
|
2016-05-30 19:29:09 +01:00
|
|
|
description = "Common files for development of MATE packages";
|
2020-02-12 17:51:20 +00:00
|
|
|
homepage = "https://mate-desktop.org";
|
2021-09-21 20:45:29 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = teams.mate.members;
|
2016-05-30 19:29:09 +01:00
|
|
|
};
|
|
|
|
}
|