33 lines
831 B
Nix
33 lines
831 B
Nix
{ stdenv, fetchFromGitHub, gdk_pixbuf, gtk_engines, gtk-engine-murrine }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "zuki-themes-${version}";
|
|
version = "3.26-1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lassekongo83";
|
|
repo = "zuki-themes";
|
|
rev = "v${version}";
|
|
sha256 = "17p75h1i3hbpshhhliliq0mm88amvfnxq8659vabqd17ccgzwzns";
|
|
};
|
|
|
|
buildInputs = [ gdk_pixbuf gtk_engines ];
|
|
|
|
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
install -dm 755 $out/share/themes
|
|
cp -a Zuki* $out/share/themes/
|
|
'';
|
|
|
|
meta = {
|
|
description = "Themes for GTK3, gnome-shell and more";
|
|
homepage = https://github.com/lassekongo83/zuki-themes;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
|
};
|
|
}
|