about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2011-08-08 07:41:45 +0000
committerAndres Löh <mail@andres-loeh.de>2011-08-08 07:41:45 +0000
commitce5ccbb0ea424aa063a5de7e416273ebececf27d (patch)
tree37e5102d2461234fe5b82c9436bb15aaaea47911 /pkgs/applications/editors
parentbcd2f9a51db94ad1d0829a6e0424189a8e4d95d3 (diff)
Updating leksah.
svn path=/nixpkgs/trunk/; revision=28376
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/leksah/default.nix37
1 files changed, 16 insertions, 21 deletions
diff --git a/pkgs/applications/editors/leksah/default.nix b/pkgs/applications/editors/leksah/default.nix
index dfed150961903..5597b32296020 100644
--- a/pkgs/applications/editors/leksah/default.nix
+++ b/pkgs/applications/editors/leksah/default.nix
@@ -1,27 +1,22 @@
-{cabal, gtk, glib, binary, binaryShared, deepseq, hslogger, ltk, network, parsec,
- leksahServer, processLeksah, regexBase, regexTDFA, utf8String, gtksourceview2,
- makeWrapper}:
+{cabal, binary, binaryShared, deepseq, glib, gtk,
+ gtksourceview2, hslogger, leksahServer, ltk, mtl, network,
+ parsec, processLeksah, regexBase, regexTDFA, strict, utf8String} :
 
 cabal.mkDerivation (self : {
   pname = "leksah";
-  version = "0.8.0.8";
-  sha256 = "1d6n5dlnqlqfckg9f611qf9lvi6b7ghrkk1l0myh6h667fxh8a1r";
-
-  propagatedBuildInputs =
-    [gtk glib binary binaryShared deepseq hslogger ltk network parsec
-     leksahServer processLeksah regexBase regexTDFA utf8String gtksourceview2];
-  extraBuildInputs = [makeWrapper];
-
-  # postInstall =
-  #   ''
-  #     wrapProgram $out/bin/leksah --prefix XDG_DATA_DIRS : ${gtk2hs.gtksourceview}/share
-  #   '';
-  
+  version = "0.10.0.4";
+  sha256 = "1g12w1kl63fxzz1c2x237yrqkaja9awiqyyipkdms5iql0ini7bw";
+  propagatedBuildInputs = [
+    binary binaryShared deepseq glib gtk gtksourceview2 hslogger
+    leksahServer ltk mtl network parsec processLeksah regexBase
+    regexTDFA strict utf8String
+  ];
+  noHaddock = true;
   meta = {
-    homepage = http://leksah.org/;
-    description = "An Integrated Development Environment for Haskell written in Haskell";
+    homepage = "http://www.leksah.org";
+    description = "Haskell IDE written in Haskell";
     license = "GPL";
-    maintainers = [self.stdenv.lib.maintainers.andres];
+    platforms = self.stdenv.lib.platforms.haskellPlatforms;
+    maintainers = [ self.stdenv.lib.maintainers.andres ];
   };
-})  
-
+})