summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/platform/libgtkhtml
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2011-10-08 16:58:32 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2011-10-08 16:58:32 +0000
commite60fe8673bee23847839c3b7e00c6f0c3f34c9d8 (patch)
tree9fbafaa4cf5bad16935f64e03e15049a9d3c8b85 /pkgs/desktops/gnome-2/platform/libgtkhtml
parenta2d0e3b73923e6c1c02862c1ea9eeaf590d1412a (diff)
downloadnixlib-e60fe8673bee23847839c3b7e00c6f0c3f34c9d8.tar
nixlib-e60fe8673bee23847839c3b7e00c6f0c3f34c9d8.tar.gz
nixlib-e60fe8673bee23847839c3b7e00c6f0c3f34c9d8.tar.bz2
nixlib-e60fe8673bee23847839c3b7e00c6f0c3f34c9d8.tar.lz
nixlib-e60fe8673bee23847839c3b7e00c6f0c3f34c9d8.tar.xz
nixlib-e60fe8673bee23847839c3b7e00c6f0c3f34c9d8.tar.zst
nixlib-e60fe8673bee23847839c3b7e00c6f0c3f34c9d8.zip
gnome: use callPackage, move to gnome-2
gnome28 was a mix of packages from various releases, so do not mention 2.28 in
the attribute name.

svn path=/nixpkgs/trunk/; revision=29721
Diffstat (limited to 'pkgs/desktops/gnome-2/platform/libgtkhtml')
-rw-r--r--pkgs/desktops/gnome-2/platform/libgtkhtml/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome-2/platform/libgtkhtml/default.nix b/pkgs/desktops/gnome-2/platform/libgtkhtml/default.nix
new file mode 100644
index 000000000000..6aab400c60ae
--- /dev/null
+++ b/pkgs/desktops/gnome-2/platform/libgtkhtml/default.nix
@@ -0,0 +1,13 @@
+{stdenv, fetchurl, pkgconfig, gtk, gettext, libxml2 }:
+
+stdenv.mkDerivation {
+  name = "libgtkhtml-2.11.1";
+  
+  src = fetchurl {
+    url = mirror://gnome/sources/libgtkhtml/2.11/libgtkhtml-2.11.1.tar.bz2;
+    sha256 = "0msajafd42545dxzyr5zqka990cjrxw2yz09ajv4zs8m1w6pm9rw";
+  };
+  
+  buildInputs = [ pkgconfig gtk gettext ];
+  propagatedBuildInputs = [ libxml2 ];
+}