mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
28 lines
761 B
Nix
28 lines
761 B
Nix
{ stdenv, fetchFromGitHub, meson, ninja, sassc, gdk-pixbuf, librsvg, gtk_engines, gtk-engine-murrine }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "zuki-themes";
|
|
version = "3.34-2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lassekongo83";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1nc0qh6qai6ybmz3a44q0rirri0gfg7lyqy4k4l1sci5q5ckl7x4";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja sassc ];
|
|
|
|
buildInputs = [ gdk-pixbuf librsvg gtk_engines ];
|
|
|
|
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Themes for GTK, gnome-shell and Xfce";
|
|
homepage = "https://github.com/lassekongo83/zuki-themes";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|