28 lines
772 B
Nix
28 lines
772 B
Nix
{ stdenv, fetchFromGitHub, meson, ninja, sassc, gdk-pixbuf, librsvg, gtk_engines, gtk-engine-murrine }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "stilo-themes";
|
|
version = "3.36-2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lassekongo83";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0w4il6rk1f8yjmdxpnzq6zll2jjqbyp9dckxhzxgs4zh8fy9pzvh";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja sassc ];
|
|
|
|
buildInputs = [ gdk-pixbuf librsvg gtk_engines ];
|
|
|
|
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Minimalistic GTK, gnome shell and Xfce themes";
|
|
homepage = "https://github.com/lassekongo83/stilo-themes";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|