mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
18 lines
609 B
Nix
18 lines
609 B
Nix
{ cabal, baseUnicodeSymbols, transformers, transformersBase }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "monad-control";
|
|
version = "0.3.2.2";
|
|
sha256 = "1wwcx2k0nzmjqxf8d8wasnhvdx5q3nxkcyq7vbprkfy85sj7ivxc";
|
|
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 ];
|
|
};
|
|
})
|