2021-04-02 20:58:16 +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;
|
|
|
|
|
2021-04-02 20:58:16 +01:00
|
|
|
passthru.updateScript = mateUpdateScript { inherit pname version; };
|
|
|
|
|
2016-05-30 19:29:09 +01:00
|
|
|
meta = {
|
|
|
|
description = "Common files for development of MATE packages";
|
2020-02-12 17:51:20 +00:00
|
|
|
homepage = "https://mate-desktop.org";
|
2021-04-22 14:23:43 +01:00
|
|
|
license = lib.licenses.gpl3Plus;
|
2021-01-15 13:21:58 +00:00
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = [ lib.maintainers.romildo ];
|
2016-05-30 19:29:09 +01:00
|
|
|
};
|
|
|
|
}
|