nixpkgs/pkgs/development/libraries/haskell/failure/default.nix

18 lines
520 B
Nix
Raw Normal View History

{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
];
};
})