mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
numix-solarized: 20160919 -> 20170810
This commit is contained in:
parent
55e65616fd
commit
1a525eeab1
@ -1,26 +1,40 @@
|
||||
{ stdenv, fetchFromGitHub, sass, glib, gdk_pixbuf }:
|
||||
{ stdenv, fetchFromGitHub, python3, sass, glib, gdk_pixbuf, libxml2,
|
||||
inkscape, optipng, gtk-engine-murrine
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "20160919";
|
||||
version = "20170810";
|
||||
name = "numix-solarized-gtk-theme-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Ferdi265";
|
||||
repo = "numix-solarized-gtk-theme";
|
||||
rev = version;
|
||||
sha256 = "0243w918ycmf9vnkzfvwnrxz9zc6xxk7167h8ywxj901pqy59kad";
|
||||
sha256 = "0l4xvsiyg15kp6xwpvm3jckxyhr1lxd678lkhrcyf40n7rd4xinl";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ python3 sass glib gdk_pixbuf libxml2 inkscape optipng ];
|
||||
|
||||
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace Makefile --replace \
|
||||
'INSTALL_DIR=$(DESTDIR)/usr/share/themes' "INSTALL_DIR=$out/share/themes"
|
||||
patchShebangs .
|
||||
substituteInPlace Makefile --replace '$(DESTDIR)'/usr $out
|
||||
substituteInPlace scripts/render-assets.sh \
|
||||
--replace /usr/bin/inkscape ${inkscape}/bin/inkscape \
|
||||
--replace /usr/bin/optipng ${optipng}/bin/optipng
|
||||
'';
|
||||
|
||||
buildInputs = [sass glib gdk_pixbuf];
|
||||
buildPhase = "true";
|
||||
|
||||
installPhase = ''
|
||||
for theme in *.colors; do
|
||||
make THEME="''${theme/.colors/}" install
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "GTK3.20-compatible version of bitterologist's Numix Solarized from deviantart";
|
||||
description = "Solarized versions of Numix GTK2 and GTK3 theme";
|
||||
longDescription = ''
|
||||
This is a fork of the Numix GTK theme that replaces the colors of the theme
|
||||
and icons to use the solarized theme with a solarized green accent color.
|
||||
@ -29,7 +43,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = https://github.com/Ferdi265/numix-solarized-gtk-theme;
|
||||
downloadPage = https://github.com/Ferdi265/numix-solarized-gtk-theme/releases;
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ maintainers.offline ];
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.offline ];
|
||||
};
|
||||
}
|
@ -19607,7 +19607,7 @@ with pkgs;
|
||||
|
||||
numix-gtk-theme = callPackage ../misc/themes/numix { };
|
||||
|
||||
numix-solarized-gtk-theme = callPackage ../misc/themes/gtk3/numix-solarized-gtk-theme { };
|
||||
numix-solarized-gtk-theme = callPackage ../misc/themes/numix-solarized { };
|
||||
|
||||
numix-sx-gtk-theme = callPackage ../misc/themes/numix-sx { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user