nixpkgs/pkgs/data/themes/marwaita/default.nix

48 lines
896 B
Nix
Raw Normal View History

2021-05-15 22:19:06 +00:00
{ lib
, stdenv
2020-07-05 14:02:48 +00:00
, fetchFromGitHub
, gdk-pixbuf
, gtk-engine-murrine
, gtk_engines
, librsvg
}:
stdenv.mkDerivation rec {
pname = "marwaita";
2021-08-09 15:39:09 +00:00
version = "10.2";
2020-07-05 14:02:48 +00:00
src = fetchFromGitHub {
owner = "darkomarko42";
repo = pname;
2020-08-12 12:00:00 +00:00
rev = version;
2021-08-09 15:39:09 +00:00
sha256 = "09xh7yhnc7szk171n0qgr52xr7sw9qq4cb7qwrkhf0184idf0pik";
2020-07-05 14:02:48 +00:00
};
buildInputs = [
gdk-pixbuf
gtk_engines
librsvg
];
propagatedUserEnvPkgs = [
gtk-engine-murrine
];
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p $out/share/themes
cp -a Marwaita* $out/share/themes
runHook postInstall
'';
meta = with lib; {
2020-09-03 13:11:55 +00:00
description = "GTK theme supporting Budgie, Pantheon, Mate, Xfce4 and GNOME desktops";
2020-07-05 14:02:48 +00:00
homepage = "https://www.pling.com/p/1239855/";
2021-08-03 14:09:04 +00:00
license = licenses.gpl3Only;
2020-07-05 14:02:48 +00:00
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}