mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, pkg-config
|
|
, gettext
|
|
, mate-icon-theme
|
|
, gtk2
|
|
, gtk3
|
|
, gtk_engines
|
|
, gtk-engine-murrine
|
|
, gdk-pixbuf
|
|
, librsvg
|
|
, mateUpdateScript
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mate-themes";
|
|
version = "3.22.24";
|
|
|
|
src = fetchurl {
|
|
url = "https://pub.mate-desktop.org/releases/themes/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "PYs6KihTMd4kxM9djJ3YRtqhFpXyBnZdjxaT68rPbko=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
gettext
|
|
gtk3
|
|
];
|
|
|
|
buildInputs = [
|
|
mate-icon-theme
|
|
gtk2
|
|
gtk_engines
|
|
gdk-pixbuf
|
|
librsvg
|
|
];
|
|
|
|
propagatedUserEnvPkgs = [
|
|
gtk-engine-murrine
|
|
];
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
postInstall = ''
|
|
gtk-update-icon-cache "$out"/share/icons/ContrastHigh
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru.updateScript = mateUpdateScript { inherit pname; };
|
|
|
|
meta = with lib; {
|
|
description = "A set of themes from MATE";
|
|
homepage = "https://mate-desktop.org";
|
|
license = with licenses; [ lgpl21Plus lgpl3Only gpl3Plus ];
|
|
platforms = platforms.unix;
|
|
maintainers = teams.mate.members;
|
|
};
|
|
}
|