equilux-theme: init at 20180927

This commit is contained in:
Franz Pletz 2018-10-11 02:07:24 +02:00
parent c04e6e04e2
commit 6892cbce09
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,39 @@
{ stdenv, fetchFromGitHub, gnome3, libxml2, gtk-engine-murrine, gdk_pixbuf, librsvg, bc }:
stdenv.mkDerivation rec {
name = "equilux-theme-${version}";
version = "20180927";
src = fetchFromGitHub {
owner = "ddnexus";
repo = "equilux-theme";
rev = "equilux-v${version}";
sha256 = "1j7ykygmwv3dmzqdc9byir86sjz6ykhv9bv1pll1bjvvnaalyzgk";
};
nativeBuildInputs = [ gnome3.glib libxml2 bc ];
buildInputs = [ gnome3.gnome-themes-extra gdk_pixbuf librsvg ];
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
dontBuild = true;
installPhase = ''
patchShebangs install.sh
sed -i install.sh \
-e "s|if .*which gnome-shell.*;|if true;|" \
-e "s|CURRENT_GS_VERSION=.*$|CURRENT_GS_VERSION=${stdenv.lib.versions.majorMinor gnome3.gnome-shell.version}|"
mkdir -p $out/share/themes
./install.sh --dest $out/share/themes
rm $out/share/themes/*/COPYING
'';
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "A Material Design theme for GNOME/GTK+ based desktop environments";
license = licenses.gpl2;
platforms = platforms.all;
maintainers = [ maintainers.fpletz ];
};
}

View File

@ -21724,6 +21724,8 @@ with pkgs;
electricsheep = callPackage ../misc/screensavers/electricsheep { };
equilux-theme = callPackage ../misc/themes/equilux-theme { };
flam3 = callPackage ../tools/graphics/flam3 { };
glee = callPackage ../tools/graphics/glee { };