nixpkgs/pkgs/development/libraries/haskell/failure/default.nix
Peter Simons 517521e507 haskell-failure: updated to version 0.1.0.1
svn path=/nixpkgs/trunk/; revision=28322
2011-08-07 22:01:24 +00:00

18 lines
520 B
Nix

{cabal} :
cabal.mkDerivation (self : {
pname = "failure";
version = "0.1.0.1";
sha256 = "15zkhnxkfsd3qf4wmcp6kcfip9ahb4s3ywnh14whmhicp9mkm3q0";
meta = {
homepage = "http://www.haskell.org/haskellwiki/Failure";
description = "A simple type class for success/failure computations.";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [
self.stdenv.lib.maintainers.simons
self.stdenv.lib.maintainers.andres
];
};
})