gtk-engine-bluecurve: init at 1.0

This commit is contained in:
gnidorah 2017-07-06 09:49:47 +03:00
parent eba93076ec
commit b5c94380e0
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, fetchurl, pkgconfig, intltool, gtk2 }:
stdenv.mkDerivation {
name = "gtk-engine-bluecurve-1.0";
src = fetchurl {
url = "http://ftp.gnome.org/pub/gnome/teams/art.gnome.org/archive/themes/gtk2/GTK2-Wonderland-Engine-1.0.tar.bz2";
sha256 = "1nim3lhmbs5mw1hh76d9258c1p923854x2j6i30gmny812c7qjnm";
};
nativeBuildInputs = [ pkgconfig intltool ];
buildInputs = [ gtk2 ];
meta = {
description = "Original Bluecurve engine from Red Hat's artwork package";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.gnidorah ];
};
}

View File

@ -17655,6 +17655,8 @@ with pkgs;
gtk_engines = callPackage ../misc/themes/gtk2/gtk-engines { };
gtk-engine-bluecurve = callPackage ../misc/themes/gtk2/gtk-engine-bluecurve { };
gtk-engine-murrine = callPackage ../misc/themes/gtk2/gtk-engine-murrine { };
gnome_themes_standard = gnome3.gnome_themes_standard;