mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
28a4433b00
https://github.com/mate-desktop/mate-backgrounds/compare/v1.26.0...v1.28.0 Also uses stdenvNoCC.
35 lines
740 B
Nix
35 lines
740 B
Nix
{ lib
|
|
, stdenvNoCC
|
|
, fetchurl
|
|
, meson
|
|
, ninja
|
|
, gettext
|
|
, mateUpdateScript
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "mate-backgrounds";
|
|
version = "1.28.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "UNGv0CSGvQesIqWmtu+jAxFI8NSKguSI2QmtVwA6aUM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
meson
|
|
ninja
|
|
];
|
|
|
|
passthru.updateScript = mateUpdateScript { inherit pname; };
|
|
|
|
meta = with lib; {
|
|
description = "Background images and data for MATE";
|
|
homepage = "https://mate-desktop.org";
|
|
license = with licenses; [ gpl2Plus cc-by-sa-40 ];
|
|
platforms = platforms.unix;
|
|
maintainers = teams.mate.members;
|
|
};
|
|
}
|