summary refs log tree commit diff
path: root/pkgs/tools/typesetting/lhs2tex
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2010-01-12 10:27:25 +0000
committerAndres Löh <mail@andres-loeh.de>2010-01-12 10:27:25 +0000
commitccde4002078a6405a7e0f1c0491a34b22002f7b3 (patch)
tree79f4f8fd4fea78188abd3611adf506b06bc508ce /pkgs/tools/typesetting/lhs2tex
parent55e2661690ae2300f2fd5291bcecb46b7bb5d49e (diff)
downloadnixlib-ccde4002078a6405a7e0f1c0491a34b22002f7b3.tar
nixlib-ccde4002078a6405a7e0f1c0491a34b22002f7b3.tar.gz
nixlib-ccde4002078a6405a7e0f1c0491a34b22002f7b3.tar.bz2
nixlib-ccde4002078a6405a7e0f1c0491a34b22002f7b3.tar.lz
nixlib-ccde4002078a6405a7e0f1c0491a34b22002f7b3.tar.xz
nixlib-ccde4002078a6405a7e0f1c0491a34b22002f7b3.tar.zst
nixlib-ccde4002078a6405a7e0f1c0491a34b22002f7b3.zip
Updated lhs2TeX.
svn path=/nixpkgs/trunk/; revision=19366
Diffstat (limited to 'pkgs/tools/typesetting/lhs2tex')
-rw-r--r--pkgs/tools/typesetting/lhs2tex/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/tools/typesetting/lhs2tex/default.nix b/pkgs/tools/typesetting/lhs2tex/default.nix
index 0881591436fe..ce74a0812d3c 100644
--- a/pkgs/tools/typesetting/lhs2tex/default.nix
+++ b/pkgs/tools/typesetting/lhs2tex/default.nix
@@ -4,18 +4,22 @@
 
 cabal.mkDerivation (self : {
   pname = "lhs2tex";
-  version = "1.14";
+  version = "1.15";
   name = self.fname;
-  sha256 = "1667acce394a0d4852f8ad07fa85397e43873fd98a219db794e4773883288687";
+  sha256 = "77f25c1f22823587ceca6eead133a403540319a0ae3bf03a369b3e8c86baf124";
   extraBuildInputs = [tetex regexCompat utf8String];
   propagatedBuildInputs = [polytable]; # automatically in user-env now with cabal
 
-  configureFlags = ''--constraint=base<4'';
-
   postInstall = ''
     ensureDir "$out/share/doc/$name"
     cp doc/Guide2.pdf $out/share/doc/$name
     ensureDir "$out/nix-support"
   '';
+
+  meta = {
+    description = "Preprocessor for typesetting Haskell sources with LaTeX";
+    license = "GPLv2";
+    maintainers = [self.stdenv.lib.maintainers.andres];
+  };
 })