about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/platform/gnome-common
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/gnome-2/platform/gnome-common')
-rw-r--r--pkgs/desktops/gnome-2/platform/gnome-common/default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome-2/platform/gnome-common/default.nix b/pkgs/desktops/gnome-2/platform/gnome-common/default.nix
new file mode 100644
index 000000000000..1d2e17241632
--- /dev/null
+++ b/pkgs/desktops/gnome-2/platform/gnome-common/default.nix
@@ -0,0 +1,14 @@
+{stdenv, fetchgit, pkgconfig, autoconf, automake, libtool}:
+
+stdenv.mkDerivation {
+  name = "gnome-common-2.28.0";
+  src =  fetchgit {
+    url = mirror://gnome/sources/gnome-common/2.28/gnome-common-2.28.0.tar.bz2;
+    sha256 = "18dnx5hndl19lpk6i3ybfsssfasma5wi7p9mqw05sx137l81fj6x";
+  };
+  buildInputs = [ pkgconfig automake autoconf libtool
+    ];
+  preConfigure = ''
+    ./autogen.sh
+  '';
+}