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

31 lines
768 B
Nix
Raw Normal View History

2018-09-19 06:57:59 -07:00
{ stdenv, fetchFromGitHub, gdk_pixbuf, librsvg, gtk-engine-murrine }:
2016-07-02 05:24:55 -07:00
stdenv.mkDerivation rec {
2019-02-10 17:05:24 -08:00
pname = "zuki-themes";
2019-03-17 16:10:35 -07:00
version = "3.32-1";
2016-07-02 05:24:55 -07:00
src = fetchFromGitHub {
owner = "lassekongo83";
2019-02-10 17:05:24 -08:00
repo = pname;
rev = "v${version}";
2019-03-17 16:10:35 -07:00
sha256 = "0x6ghc7n5y7p0agm2yp7rygz9154f58s891zxzhd07wc2c4mzp0s";
2016-07-02 05:24:55 -07:00
};
2018-09-19 06:57:59 -07:00
buildInputs = [ gdk_pixbuf librsvg ];
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
2016-07-02 05:24:55 -07:00
installPhase = ''
install -dm 755 $out/share/themes
2018-01-12 06:20:50 -08:00
cp -a Zuki* $out/share/themes/
2016-07-02 05:24:55 -07:00
'';
2018-09-19 06:57:59 -07:00
meta = with stdenv.lib; {
2018-01-12 06:20:50 -08:00
description = "Themes for GTK3, gnome-shell and more";
homepage = https://github.com/lassekongo83/zuki-themes;
2018-09-19 06:57:59 -07:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
2016-07-02 05:24:55 -07:00
};
}