nixpkgs/pkgs/development/libraries/haskell/explicit-exception/default.nix
Peter Simons a11aaa99b2 haskell-explicit-exception: updated to version 0.1.6
svn path=/nixpkgs/trunk/; revision=31918
2012-01-29 16:24:05 +00:00

21 lines
602 B
Nix

{ 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;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})