summary refs log tree commit diff
path: root/pkgs/desktops/mate/mate-backgrounds/default.nix
blob: 85bf57ff1c042aaf2b0df226af00e450f8e63a38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, gettext }:

stdenv.mkDerivation rec {
  pname = "mate-backgrounds";
  version = "1.24.0";

  src = fetchurl {
    url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
    sha256 = "16rmsy02fyq6mj6xgc5mdyh146z3zmkn7iwsi44s962aqwbpn4i8";
  };

  nativeBuildInputs = [ gettext ];

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "Background images and data for MATE";
    homepage = "https://mate-desktop.org";
    license = licenses.gpl2;
    platforms = platforms.unix;
    maintainers = [ maintainers.romildo ];
  };
}