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

39 lines
1.1 KiB
Nix
Raw Normal View History

2018-03-29 11:09:37 +00:00
{ stdenv, fetchFromGitHub, gnome3, libxml2, gtk-engine-murrine, gdk_pixbuf, librsvg, bc }:
2016-08-03 09:28:54 +00:00
stdenv.mkDerivation rec {
2019-02-05 20:03:33 +00:00
pname = "materia-theme";
2019-03-17 14:48:36 +00:00
version = "20190315";
2016-08-03 09:28:54 +00:00
src = fetchFromGitHub {
owner = "nana-4";
2019-02-05 20:03:33 +00:00
repo = pname;
2017-04-18 16:41:10 +00:00
rev = "v${version}";
2019-03-17 14:48:36 +00:00
sha256 = "1fpipwvwxjiriqhysqgx51rnax73hyd5jkyxhc2g3y73s5r2xq82";
2016-08-03 09:28:54 +00:00
};
2018-03-29 11:09:37 +00:00
nativeBuildInputs = [ gnome3.glib libxml2 bc ];
buildInputs = [ gnome3.gnome-themes-extra gdk_pixbuf librsvg ];
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
2016-08-03 09:28:54 +00:00
dontBuild = true;
installPhase = ''
2017-04-18 16:41:10 +00:00
patchShebangs install.sh
sed -i install.sh \
2018-03-29 11:09:37 +00: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 09:28:54 +00:00
'';
meta = with stdenv.lib; {
2019-02-05 20:03:33 +00: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 09:28:54 +00:00
platforms = platforms.all;
maintainers = [ maintainers.mounium ];
2016-08-03 09:28:54 +00:00
};
}