nixpkgs/pkgs/development/libraries/haskell/monad-control/default.nix
Peter Simons d98161617f Update Haskell packages.
- hinotify: added meta.maintainers section
 - hledger-lib: update to version 0.18.1
 - hledger: update to version 0.18.1
 - hledger-web: update to version 0.18.1
 - lifted-base: update to version 0.1.1.1
 - monad-control: update to version 0.3.1.4
 - multiarg: update to version 0.4.0.0
 - pandoc: update to version 1.9.4.2
 - shelly: update to version 0.12.2
2012-07-02 10:46:19 +02:00

18 lines
609 B
Nix

{ cabal, baseUnicodeSymbols, transformers, transformersBase }:
cabal.mkDerivation (self: {
pname = "monad-control";
version = "0.3.1.4";
sha256 = "0mvcj6rljh2drkpf29zavwsqpzd9lw7s0n4inxm82i2017xdazy1";
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 ];
};
})