summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/SMTPClient/default.nix
blob: 45c8d4aeaeed35986cb3748ad45dd961d4007844 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{cabal, hsemail, network}:

cabal.mkDerivation (self : {
  pname = "SMTPClient";
  version = "1.0.3";
  sha256 = "c9907834565b5b712d50c50823513675b982c8b51e7b95680a3495eccb73ce66";
  propagatedBuildInputs = [hsemail network];
  meta = {
    description = "A simple SMTP client library";
    license = "BSD";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})