18 lines
609 B
Nix
18 lines
609 B
Nix
{ cabal, baseUnicodeSymbols, transformers, transformersBase }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "monad-control";
|
|
version = "0.3.2.3";
|
|
sha256 = "1fk3cqzsiwyjpyd20z1j0i4m669rcag2q7kpl78m6vm1a405iwlw";
|
|
buildDepends = [
|
|
baseUnicodeSymbols transformers transformersBase
|
|
];
|
|
meta = {
|
|
homepage = "https://github.com/basvandijk/monad-control";
|
|
description = "Lift control operations, like exception catching, through monad transformers";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|