Skip to content

Commit

Permalink
Merge pull request #411 from ocharles/gnome-themes-standard
Browse files Browse the repository at this point in the history
gnome-themes-standard: Initial expression
  • Loading branch information
vcunat committed Apr 3, 2013
2 parents 4fbd7b0 + 0a94772 commit 16f4550
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
15 changes: 15 additions & 0 deletions pkgs/misc/themes/gnome-themes-standard/default.nix
@@ -0,0 +1,15 @@
{ stdenv, fetchurl, intltool, gtk3, librsvg, pkgconfig, pango, atk, gtk2, gdk_pixbuf }:
stdenv.mkDerivation {
name = "gnome-themes-standard";
src = fetchurl {
url = "http://ftp.gnome.org/pub/GNOME/sources/gnome-themes-standard/3.7/gnome-themes-standard-3.7.92.tar.xz";
sha256 = "0a1ed83c07f57b5b45b8f3817ca0ca14feecb56de505243c086fb306c88da8de";
};

buildInputs = [ intltool gtk3 librsvg pkgconfig pango atk gtk2 gdk_pixbuf ];

preConfigure = ''
cat ${gdk_pixbuf}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache ${librsvg}/lib/gdk-pixbuf/loaders.cache > loaders.cache
export GDK_PIXBUF_MODULE_FILE=`readlink -e loaders.cache`
'';
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -8601,6 +8601,8 @@ let

oxygen_gtk = callPackage ../misc/themes/gtk2/oxygen-gtk { };

gnome_themes_standard = callPackage ../misc/themes/gnome-themes-standard { };

xfce = xfce4_10;
xfce4_10 = recurseIntoAttrs (import ../desktops/xfce { inherit pkgs newScope; });

Expand Down

0 comments on commit 16f4550

Please sign in to comment.