mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
70ef1faa25
- install.sh uses a global environment variable called $name, if defined, to name the theme. This is an issue because nix sets this variable to the package name. - Replace gnome-themes-standard to gnome-themes-extra.
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, gnome3, libxml2, gtk-engine-murrine, gdk_pixbuf, librsvg, bc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "materia-theme-${version}";
|
|
version = "20180321";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nana-4";
|
|
repo = "materia-theme";
|
|
rev = "v${version}";
|
|
sha256 = "1nj9ylg9g74smd2kdyzlamdw9cg0f3jz77vn5898drjyscw5qpp6";
|
|
};
|
|
|
|
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=${gnome3.version}|"
|
|
mkdir -p $out/share/themes
|
|
# name is used internally by the package installation script
|
|
name= ./install.sh --dest $out/share/themes
|
|
rm $out/share/themes/*/COPYING
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A Material Design theme for GNOME/GTK+ based desktop environments";
|
|
homepage = https://github.com/nana-4/materia-theme;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.mounium ];
|
|
};
|
|
}
|