2019-04-21 08:40:55 -07:00
|
|
|
{ stdenv, fetchurl, intltool }:
|
2017-12-31 02:54:32 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "mate-backgrounds";
|
2019-04-21 05:02:46 -07:00
|
|
|
version = "1.22.0";
|
2017-12-31 02:54:32 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-04-21 05:02:46 -07:00
|
|
|
sha256 = "1j9ch04qi2q4mdcvb92w667ra9hpfdf2bfpi1dpw0nbph7r6qvj9";
|
2017-12-31 02:54:32 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ intltool ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Background images and data for MATE";
|
2019-04-14 16:25:45 -07:00
|
|
|
homepage = https://mate-desktop.org;
|
2017-12-31 02:54:32 -08:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|