summary refs log tree commit diff
path: root/pkgs/development/tools/documentation/haddock
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-10-15 11:52:01 +0200
committerPeter Simons <simons@cryp.to>2012-10-15 11:52:01 +0200
commite32db14a594711fe3c1a536925d4a1456bed221a (patch)
tree643cfca715ed5b47f481de3f08af53e3e7162e54 /pkgs/development/tools/documentation/haddock
parent29980e0d547ad814fa252ffec7fd8ce8ab79596d (diff)
downloadnixlib-e32db14a594711fe3c1a536925d4a1456bed221a.tar
nixlib-e32db14a594711fe3c1a536925d4a1456bed221a.tar.gz
nixlib-e32db14a594711fe3c1a536925d4a1456bed221a.tar.bz2
nixlib-e32db14a594711fe3c1a536925d4a1456bed221a.tar.lz
nixlib-e32db14a594711fe3c1a536925d4a1456bed221a.tar.xz
nixlib-e32db14a594711fe3c1a536925d4a1456bed221a.tar.zst
nixlib-e32db14a594711fe3c1a536925d4a1456bed221a.zip
haskell-haddock: add version 2.13.1
Diffstat (limited to 'pkgs/development/tools/documentation/haddock')
-rw-r--r--pkgs/development/tools/documentation/haddock/2.13.1.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/tools/documentation/haddock/2.13.1.nix b/pkgs/development/tools/documentation/haddock/2.13.1.nix
new file mode 100644
index 000000000000..1eed852f5370
--- /dev/null
+++ b/pkgs/development/tools/documentation/haddock/2.13.1.nix
@@ -0,0 +1,18 @@
+{ cabal, alex, Cabal, deepseq, filepath, ghcPaths, happy, xhtml }:
+
+cabal.mkDerivation (self: {
+  pname = "haddock";
+  version = "2.13.1";
+  sha256 = "0zsflbc3ayjsn542sa58zl62dd78ykr489f18sh467hrrnaj4pkf";
+  isLibrary = true;
+  isExecutable = true;
+  buildDepends = [ Cabal deepseq 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 ];
+  };
+})