From e195f5b35863e56aafe37954cbe71621172f5337 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 2 Jan 2012 14:51:23 +0000 Subject: monad-control: use consistent naming scheme for all supported versions svn path=/nixpkgs/trunk/; revision=31211 --- .../libraries/haskell/monad-control/0.3.1.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pkgs/development/libraries/haskell/monad-control/0.3.1.nix (limited to 'pkgs/development/libraries/haskell/monad-control/0.3.1.nix') diff --git a/pkgs/development/libraries/haskell/monad-control/0.3.1.nix b/pkgs/development/libraries/haskell/monad-control/0.3.1.nix new file mode 100644 index 0000000000000..bf4ca6d004237 --- /dev/null +++ b/pkgs/development/libraries/haskell/monad-control/0.3.1.nix @@ -0,0 +1,20 @@ +{ cabal, baseUnicodeSymbols, transformers, transformersBase }: + +cabal.mkDerivation (self: { + pname = "monad-control"; + version = "0.3.1"; + sha256 = "0laqvbnj1dfcdxrybxdnzw5g95drv34ys0cbwkcw47nl9w801p45"; + 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 + self.stdenv.lib.maintainers.simons + ]; + }; +}) -- cgit 1.4.1