summary refs log tree commit diff
path: root/pkgs/development/tools/documentation/haddock
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-03-05 11:58:21 +0000
committerPeter Simons <simons@cryp.to>2012-03-05 11:58:21 +0000
commit05d92999a09fdbcbe46791c87aaebaf52ae3e146 (patch)
tree8eceafb7479160e36597bb93817f2f082b4327a9 /pkgs/development/tools/documentation/haddock
parentedb8aaed9230ebe33e83fdd5d03eeedb463d8aac (diff)
downloadnixlib-05d92999a09fdbcbe46791c87aaebaf52ae3e146.tar
nixlib-05d92999a09fdbcbe46791c87aaebaf52ae3e146.tar.gz
nixlib-05d92999a09fdbcbe46791c87aaebaf52ae3e146.tar.bz2
nixlib-05d92999a09fdbcbe46791c87aaebaf52ae3e146.tar.lz
nixlib-05d92999a09fdbcbe46791c87aaebaf52ae3e146.tar.xz
nixlib-05d92999a09fdbcbe46791c87aaebaf52ae3e146.tar.zst
nixlib-05d92999a09fdbcbe46791c87aaebaf52ae3e146.zip
Updated haskell packages.
 - HDBC-postgresql updated to version 2.3.2.1
 - HsOpenSSL updated to version 0.10.1.3
 - hledger-web updated to version 0.17.1
 - persistent updated to version 0.8.0.2
 - xml-conduit updated to version 0.5.3.1
 - haddock: added version 2.10.0

svn path=/nixpkgs/trunk/; revision=32799
Diffstat (limited to 'pkgs/development/tools/documentation/haddock')
-rw-r--r--pkgs/development/tools/documentation/haddock/2.10.0.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/tools/documentation/haddock/2.10.0.nix b/pkgs/development/tools/documentation/haddock/2.10.0.nix
new file mode 100644
index 000000000000..a1510f58f7e1
--- /dev/null
+++ b/pkgs/development/tools/documentation/haddock/2.10.0.nix
@@ -0,0 +1,21 @@
+{ cabal, alex, Cabal, filepath, ghcPaths, happy, xhtml }:
+
+cabal.mkDerivation (self: {
+  pname = "haddock";
+  version = "2.10.0";
+  sha256 = "045lmmna5nwj07si81vxms5xkkmqvjsiif20nny5mvlabshxn1yi";
+  isLibrary = true;
+  isExecutable = true;
+  buildDepends = [ Cabal filepath ghcPaths xhtml ];
+  buildTools = [ alex happy ];
+  meta = {
+    homepage = "http://www.haskell.org/haddock/";
+    description = "A documentation-generation tool for Haskell libraries";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+    maintainers = [
+      self.stdenv.lib.maintainers.andres
+      self.stdenv.lib.maintainers.simons
+    ];
+  };
+})