haskell-explicit-exception: added version 0.1.6

svn path=/nixpkgs/trunk/; revision=31914
This commit is contained in:
Peter Simons 2012-01-29 16:23:53 +00:00
parent 467722ad1a
commit 1bc0a60bf8
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{ cabal, transformers }:
cabal.mkDerivation (self: {
pname = "explicit-exception";
version = "0.1.6";
sha256 = "0pgdbaav952bwcmbfwg0fgvc15k57rlnw131bs3pnp8rqdbxfv39";
isLibrary = true;
isExecutable = true;
buildDepends = [ transformers ];
meta = {
homepage = "http://www.haskell.org/haskellwiki/Exception";
description = "Exceptions which are explicit in the type signature";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -647,6 +647,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
erf = callPackage ../development/libraries/haskell/erf {}; erf = callPackage ../development/libraries/haskell/erf {};
explicitException = callPackage ../development/libraries/haskell/explicit-exception {};
filepath = callPackage ../development/libraries/haskell/filepath {}; filepath = callPackage ../development/libraries/haskell/filepath {};
extensibleExceptions_0_1_1_0 = callPackage ../development/libraries/haskell/extensible-exceptions/0.1.1.0.nix {}; extensibleExceptions_0_1_1_0 = callPackage ../development/libraries/haskell/extensible-exceptions/0.1.1.0.nix {};