37 lines
1.0 KiB
Nix
37 lines
1.0 KiB
Nix
{ stdenv, fetchFromGitHub, gnome3, libxml2, gtk-engine-murrine, gdk_pixbuf, librsvg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "materia-theme-${version}";
|
|
version = "20171112";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nana-4";
|
|
repo = "materia-theme";
|
|
rev = "v${version}";
|
|
sha256 = "0iwak15mxkwazfnkxw4wf2qgr6s64jh8lxy0wfqvb2willzabprk";
|
|
};
|
|
|
|
nativeBuildInputs = [ gnome3.glib libxml2 ];
|
|
|
|
buildInputs = [ gnome3.gnome_themes_standard gtk-engine-murrine gdk_pixbuf librsvg ];
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
patchShebangs install.sh
|
|
sed -i install.sh \
|
|
-e "s|^gnomever=.*$|gnomever=${gnome3.version}|" \
|
|
-e "s|/usr||"
|
|
destdir="$out" ./install.sh
|
|
rm $out/share/themes/*/COPYING
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A Material Design-like theme for GNOME/GTK+ based desktop environments (formerly Flat-Plat)";
|
|
homepage = https://github.com/nana-4/materia-theme;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.mounium ];
|
|
};
|
|
}
|