summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hsemail/default.nix
blob: bce28aa71faf9df8acc6270e10865d373c8ca273 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{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];
  };
})