mate-backgrounds: init at 1.18.0

This commit is contained in:
José Romildo Malaquias 2017-12-31 08:54:32 -02:00 committed by Tuomas Tynkkynen
parent 7110c14729
commit 557fab2115
2 changed files with 25 additions and 0 deletions

View File

@ -17,6 +17,7 @@ let
libmatemixer = callPackage ./libmatemixer { };
libmateweather = callPackage ./libmateweather { };
marco = callPackage ./marco { };
mate-backgrounds = callPackage ./mate-backgrounds { };
mate-common = callPackage ./mate-common { };
mate-control-center = callPackage ./mate-control-center { };
mate-desktop = callPackage ./mate-desktop { };
@ -59,6 +60,7 @@ let
cajaWithExtensions
engrampa
eom
mate-backgrounds
mate-icon-theme-faenza
mate-media
mate-power-manager

View File

@ -0,0 +1,23 @@
{ stdenv, fetchurl, intltool }:
stdenv.mkDerivation rec {
name = "mate-backgrounds-${version}";
version = "${major-ver}.${minor-ver}";
major-ver = "1.18";
minor-ver = "0";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
sha256 = "06q8ksjisijps2wn959arywsimhzd3j35mqkr048c26ck24d60zi";
};
nativeBuildInputs = [ intltool ];
meta = with stdenv.lib; {
description = "Background images and data for MATE";
homepage = http://mate-desktop.org;
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}