52fe24049c
svn path=/nixpkgs/trunk/; revision=21107
15 lines
375 B
Nix
15 lines
375 B
Nix
{cabal, hsemail, network}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "SMTPClient";
|
|
version = "1.0.2";
|
|
sha256 = "b835cebf22e9281778deeec3ceffeb95aa8ae9c0e1f97e8e9734cf5d87ecba5f";
|
|
propagatedBuildInputs = [hsemail network];
|
|
meta = {
|
|
description = "A simple SMTP client library";
|
|
license = "BSD";
|
|
maintainers = [self.stdenv.lib.maintainers.andres];
|
|
};
|
|
})
|
|
|