a6020a75d4
SMTPClient cannot be built with the latest version of hsemail because its Cabal files enforces 1.6 by an upper version bound. I've asked upstream to release an update that fixes this, but until that happens we need to keep version 1.6 around to make sure Gitit compiles. svn path=/nixpkgs/trunk/; revision=28187
15 lines
354 B
Nix
15 lines
354 B
Nix
{cabal, mtl, parsec}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "hsemail";
|
|
version = "1.6";
|
|
sha256 = "a8ba7e8cfb9213bb2ee61166bc8352e4353560d06f418a0c729aeb1d50b3a1fd";
|
|
propagatedBuildInputs = [mtl parsec];
|
|
meta = {
|
|
description = "Internet Message Parsers";
|
|
license = "BSD";
|
|
maintainers = [self.stdenv.lib.maintainers.andres];
|
|
};
|
|
})
|
|
|