nixpkgs/pkgs/data/themes/materia-theme/default.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, gnome3, glib, libxml2, gtk-engine-murrine, gdk_pixbuf, librsvg, bc }:
2016-08-03 02:28:54 -07:00
stdenv.mkDerivation rec {
2019-02-05 12:03:33 -08:00
pname = "materia-theme";
2019-03-17 07:48:36 -07:00
version = "20190315";
2016-08-03 02:28:54 -07:00
src = fetchFromGitHub {
owner = "nana-4";
2019-02-05 12:03:33 -08:00
repo = pname;
2017-04-18 09:41:10 -07:00
rev = "v${version}";
2019-03-17 07:48:36 -07:00
sha256 = "1fpipwvwxjiriqhysqgx51rnax73hyd5jkyxhc2g3y73s5r2xq82";
2016-08-03 02:28:54 -07:00
};
nativeBuildInputs = [ glib libxml2 bc ];
buildInputs = [ gnome3.gnome-themes-extra gdk_pixbuf librsvg ];
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
2016-08-03 02:28:54 -07:00
dontBuild = true;
installPhase = ''
2017-04-18 09:41:10 -07:00
patchShebangs install.sh
sed -i install.sh \
2018-03-29 04:09:37 -07:00
-e "s|if .*which gnome-shell.*;|if true;|" \
-e "s|CURRENT_GS_VERSION=.*$|CURRENT_GS_VERSION=${stdenv.lib.versions.majorMinor gnome3.gnome-shell.version}|"
./install.sh --dest $out/share/themes
rm $out/share/themes/*/COPYING
2016-08-03 02:28:54 -07:00
'';
meta = with stdenv.lib; {
2019-02-05 12:03:33 -08:00
description = "Material Design theme for GNOME/GTK+ based desktop environments";
homepage = https://github.com/nana-4/materia-theme;
license = licenses.gpl2;
2016-08-03 02:28:54 -07:00
platforms = platforms.all;
maintainers = [ maintainers.mounium ];
2016-08-03 02:28:54 -07:00
};
}