nixpkgs/pkgs/desktops/mate/mate-backgrounds/default.nix

24 lines
634 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gettext }:
2017-12-31 11:54:32 +01:00
stdenv.mkDerivation rec {
pname = "mate-backgrounds";
version = "1.24.0";
2017-12-31 11:54:32 +01:00
src = fetchurl {
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "16rmsy02fyq6mj6xgc5mdyh146z3zmkn7iwsi44s962aqwbpn4i8";
2017-12-31 11:54:32 +01:00
};
nativeBuildInputs = [ gettext ];
2017-12-31 11:54:32 +01:00
2020-02-14 22:52:51 +01:00
enableParallelBuilding = true;
2017-12-31 11:54:32 +01:00
meta = with stdenv.lib; {
description = "Background images and data for MATE";
homepage = "https://mate-desktop.org";
2017-12-31 11:54:32 +01:00
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}