mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
18 lines
553 B
Nix
18 lines
553 B
Nix
{ cabal, transformers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "explicit-exception";
|
|
version = "0.1.7.1";
|
|
sha256 = "15p5pndam6byd3p8qlnn8pjdhb7rvn93fxa2m40x3wxh58ymkh14";
|
|
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 ];
|
|
};
|
|
})
|