about summary refs log tree commit diff
path: root/pkgs/development/libraries/lesstif-0.93
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-07-28 15:35:01 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-07-28 15:35:01 +0000
commit749b8607ca3a6621d1aa37384c85e72369c64741 (patch)
treecc69ff74bd882a90f0747416deff9e989023a351 /pkgs/development/libraries/lesstif-0.93
parent27fe0c57f3f8ced50ac302d2d337cca454ed0efa (diff)
downloadnixlib-749b8607ca3a6621d1aa37384c85e72369c64741.tar
nixlib-749b8607ca3a6621d1aa37384c85e72369c64741.tar.gz
nixlib-749b8607ca3a6621d1aa37384c85e72369c64741.tar.bz2
nixlib-749b8607ca3a6621d1aa37384c85e72369c64741.tar.lz
nixlib-749b8607ca3a6621d1aa37384c85e72369c64741.tar.xz
nixlib-749b8607ca3a6621d1aa37384c85e72369c64741.tar.zst
nixlib-749b8607ca3a6621d1aa37384c85e72369c64741.zip
* More cleanup.
svn path=/nixpkgs/trunk/; revision=22795
Diffstat (limited to 'pkgs/development/libraries/lesstif-0.93')
-rw-r--r--pkgs/development/libraries/lesstif-0.93/default.nix18
1 files changed, 10 insertions, 8 deletions
diff --git a/pkgs/development/libraries/lesstif-0.93/default.nix b/pkgs/development/libraries/lesstif-0.93/default.nix
index 3e452cf81c4a..e8ec3d5e659a 100644
--- a/pkgs/development/libraries/lesstif-0.93/default.nix
+++ b/pkgs/development/libraries/lesstif-0.93/default.nix
@@ -1,23 +1,25 @@
-args: with args ;
-
+{ stdenv, fetchurl, x11, libXp, libXau }:
 
 stdenv.mkDerivation {
   name = "lesstif-0.93.94";
+  
   src = fetchurl {
     url = http://prdownloads.sourceforge.net/lesstif/lesstif-0.93.94.tar.bz2;
     sha256 = "0v4l46ill6dhhswsw1hk6rqyng98d85nsr214vhd2k0mfajpig1y";
   };
+  
   buildInputs = [x11];
+  
   propagatedBuildInputs = [libXp libXau];
 
   # This is an older release of lesstif which works with arb.
-  #
-  patches = [
-    ./c-bad_integer_cast.patch    
-    ./c-xim_chained_list_crash.patch
-    ./c-render_table_crash.patch 
-    ./stdint.patch
+  patches =
+    [ ./c-bad_integer_cast.patch    
+      ./c-xim_chained_list_crash.patch
+      ./c-render_table_crash.patch 
+      ./stdint.patch
     ];
+    
   meta = {
     priority = "5";
   };