nixpkgs/pkgs/development/libraries/haskell/failure/default.nix
Peter Simons 79c34b96e1 haskell-failure: updated to version 0.1.2
svn path=/nixpkgs/trunk/; revision=31465
2012-01-10 15:20:23 +00:00

18 lines
498 B
Nix

{ cabal }:
cabal.mkDerivation (self: {
pname = "failure";
version = "0.1.2";
sha256 = "14pwj0zb5kk2wadpddanxv3kr0hzklxhzbprmkh40yn1dbwgdas4";
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.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})