depot/third_party/nixpkgs/pkgs/desktops/mate/mate-backgrounds/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

25 lines
640 B
Nix

{ stdenv, fetchurl, meson, ninja, gettext }:
stdenv.mkDerivation rec {
pname = "mate-backgrounds";
version = "1.24.1";
src = fetchurl {
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "0b9yx68p9l867bqsl9z2g4wrs8p396ls673jgaliys5snmk8n8dn";
};
nativeBuildInputs = [
gettext
meson
ninja
];
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 ];
};
}