about summary refs log tree commit diff
path: root/pkgs/development/tools/documentation
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-03-30 22:06:23 +0200
committerPeter Simons <simons@cryp.to>2014-03-31 21:39:24 +0200
commitc6da40c42f8e4feb2271e5398c70b71e68a57461 (patch)
tree651222f76df1084fdf9454033fe95e90d6bed37e /pkgs/development/tools/documentation
parent305531cbd96317634d8c5806b35a67b322effd0d (diff)
downloadnixlib-c6da40c42f8e4feb2271e5398c70b71e68a57461.tar
nixlib-c6da40c42f8e4feb2271e5398c70b71e68a57461.tar.gz
nixlib-c6da40c42f8e4feb2271e5398c70b71e68a57461.tar.bz2
nixlib-c6da40c42f8e4feb2271e5398c70b71e68a57461.tar.lz
nixlib-c6da40c42f8e4feb2271e5398c70b71e68a57461.tar.xz
nixlib-c6da40c42f8e4feb2271e5398c70b71e68a57461.tar.zst
nixlib-c6da40c42f8e4feb2271e5398c70b71e68a57461.zip
haskell-haddock: add version 2.14.1
Diffstat (limited to 'pkgs/development/tools/documentation')
-rw-r--r--pkgs/development/tools/documentation/haddock/2.14.1.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/tools/documentation/haddock/2.14.1.nix b/pkgs/development/tools/documentation/haddock/2.14.1.nix
new file mode 100644
index 000000000000..c63503c85baa
--- /dev/null
+++ b/pkgs/development/tools/documentation/haddock/2.14.1.nix
@@ -0,0 +1,22 @@
+{ cabal, alex, Cabal, deepseq, filepath, ghcPaths, happy, hspec
+, QuickCheck, xhtml
+}:
+
+cabal.mkDerivation (self: {
+  pname = "haddock";
+  version = "2.14.1";
+  sha256 = "1mxkphzdfd5c8dklfl09ajqwhw8ibvzl0cqrfr2j8rn0j03w46x6";
+  isLibrary = true;
+  isExecutable = true;
+  buildDepends = [ Cabal deepseq filepath ghcPaths xhtml ];
+  testDepends = [ Cabal deepseq filepath hspec QuickCheck ];
+  buildTools = [ alex happy ];
+  doCheck = false;
+  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 ];
+  };
+})