Author: simons
Date: Sun Oct  2 20:27:20 2011
New Revision: 29572
URL: https://ssl.nixos.org/websvn/nix/?rev=29572&sc=1

Log:
haskell-haddock: added version 2.9.3

Added:
   nixpkgs/trunk/pkgs/development/tools/documentation/haddock/2.9.3.nix
Modified:
   nixpkgs/trunk/pkgs/top-level/haskell-packages.nix

Added: nixpkgs/trunk/pkgs/development/tools/documentation/haddock/2.9.3.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/development/tools/documentation/haddock/2.9.3.nix        
Sun Oct  2 20:27:20 2011        (r29572)
@@ -0,0 +1,21 @@
+{ cabal, alex, ghcPaths, happy, xhtml }:
+
+cabal.mkDerivation (self: {
+  pname = "haddock";
+  version = "2.9.3";
+  sha256 = "0r3yp5s7qv9hmwwfz8rxbwj39qpysgyg53ka4alaxnfma0a96iyj";
+  isLibrary = true;
+  isExecutable = true;
+  buildDepends = [ 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
+    ];
+  };
+})

Modified: nixpkgs/trunk/pkgs/top-level/haskell-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Sun Oct  2 20:13:54 
2011        (r29571)
+++ nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Sun Oct  2 20:27:20 
2011        (r29572)
@@ -1369,6 +1369,7 @@
   haddock_2_4_2 = callPackage 
../development/tools/documentation/haddock/2.4.2.nix {};
   haddock_2_7_2 = callPackage 
../development/tools/documentation/haddock/2.7.2.nix {};
   haddock_2_9_2 = callPackage 
../development/tools/documentation/haddock/2.9.2.nix {};
+  haddock_2_9_3 = callPackage 
../development/tools/documentation/haddock/2.9.3.nix {};
   haddock = self.haddock_2_7_2;
 
   happy_1_18_4 = callPackage ../development/tools/parsing/happy/1.18.4.nix {};
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to