Merge pull request #1760 from lethalman/gnome-common

gnome3.gnome-common: new package
This commit is contained in:
Domen Kožar 2014-02-16 22:30:25 +01:00
commit 4fe88d295c
2 changed files with 15 additions and 1 deletions

View file

@ -0,0 +1,12 @@
{ stdenv, fetchurl, which }:
stdenv.mkDerivation rec {
name = "gnome-common-3.10.0";
src = fetchurl {
url = "https://download.gnome.org/sources/gnome-common/3.10/${name}.tar.xz";
sha256 = "aed69474a671e046523827f73ba5e936d57235b661db97900db7356e1e03b0a3";
};
propagatedBuildInputs = [ which ]; # autogen.sh which is using gnome_common tends to require which
}

View file

@ -4,7 +4,7 @@ rec {
inherit (pkgs) glib gtk2 gtk3 gnome2;
gtk = gtk3; # just to be sure
libcanberra = pkgs.libcanberra_gtk3; # just to be sure
inherit (pkgs.gnome2) gnome_common ORBit2;
inherit (pkgs.gnome2) ORBit2;
orbit = ORBit2;
inherit (pkgs) libsoup;
@ -36,6 +36,8 @@ rec {
gnome_control_center = callPackage ./core/gnome-control-center { };
gnome_common = callPackage ./core/gnome-common { };
gnome_icon_theme = callPackage ./core/gnome-icon-theme { };
gnome-menus = callPackage ./core/gnome-menus { };