Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / desktops / mate / mate-backgrounds / default.nix
blob0d512260d30390b676a7cce71eeb33eb5cd1b9bc
1 { lib
2 , stdenvNoCC
3 , fetchurl
4 , meson
5 , ninja
6 , gettext
7 , mateUpdateScript
8 }:
10 stdenvNoCC.mkDerivation rec {
11   pname = "mate-backgrounds";
12   version = "1.28.0";
14   src = fetchurl {
15     url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
16     sha256 = "UNGv0CSGvQesIqWmtu+jAxFI8NSKguSI2QmtVwA6aUM=";
17   };
19   nativeBuildInputs = [
20     gettext
21     meson
22     ninja
23   ];
25   passthru.updateScript = mateUpdateScript { inherit pname; };
27   meta = with lib; {
28     description = "Background images and data for MATE";
29     homepage = "https://mate-desktop.org";
30     license = with licenses; [ gpl2Plus cc-by-sa-40 ];
31     platforms = platforms.unix;
32     maintainers = teams.mate.members;
33   };