nixpkgs/pkgs/development/libraries/haskell/MaybeT/default.nix
Andres Löh b18dd91057 Removing trailing whitespace.
svn path=/nixpkgs/trunk/; revision=26570
2011-03-28 15:04:00 +00:00

15 lines
340 B
Nix

{cabal, mtl}:
cabal.mkDerivation (self : {
pname = "MaybeT";
version = "0.1.2";
sha256 = "995e61165122656807d84174e5c1516340fd7ddeba6571c20751352a8476b632";
propagatedBuildInputs = [mtl];
meta = {
description = "MaybeT monad transformer";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})