about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/lesstif/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/lesstif/default.nix')
-rw-r--r--nixpkgs/pkgs/development/libraries/lesstif/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/lesstif/default.nix b/nixpkgs/pkgs/development/libraries/lesstif/default.nix
new file mode 100644
index 000000000000..b678a0893867
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/lesstif/default.nix
@@ -0,0 +1,28 @@
+{stdenv, fetchurl, xlibsWrapper, libXp, libXau}:
+
+stdenv.mkDerivation rec {
+  name = "lesstif-0.95.2";
+  src = fetchurl {
+    url = "mirror://sourceforge/lesstif/${name}.tar.bz2";
+    sha256 = "1qzpxjjf7ri1jzv71mvq5m9g8hfaj5yzwp30rwxlm6n2b24a6jpb";
+  };
+  buildInputs = [xlibsWrapper];
+  propagatedBuildInputs = [libXp libXau];
+
+  # These patches fix a number of later issues - in particular the
+  # render_table_crash shows up in 'arb'. The same patches appear
+  # in Debian, so we assume they have been sent upstream.
+  #
+  patches = [
+    ./c-missing_xm_h.patch
+    ./c-render_table_crash.patch
+    ./c-xpmpipethrough.patch
+    ];
+
+  meta = with stdenv.lib; {
+    description = "An open source clone of the Motif widget set";
+    homepage = http://lesstif.sourceforge.net;
+    platforms = platforms.unix;
+    license = with licenses; [ gpl2 lgpl2 ];
+  };
+}