nixpkgs/pkgs/development/libraries/haskell/HaskellNet/default.nix

15 lines
498 B
Nix
Raw Normal View History

2014-08-13 15:55:04 +02:00
{ cabal, base64String, Crypto, mimeMail, mtl, network, text }:
cabal.mkDerivation (self: {
pname = "HaskellNet";
version = "0.3.1";
sha256 = "168w6y5rizszq1428amxbkhww65sy3b7czxpjyrzzq3dhjn517nr";
buildDepends = [ base64String Crypto mimeMail mtl network text ];
meta = {
homepage = "https://github.com/jtdaugherty/HaskellNet";
description = "Client support for POP3, SMTP, and IMAP";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})