summary refs log tree commit diff
path: root/pkgs/development/libraries/libesmtp/default.nix
blob: 9650f540fcfba44a49ec5ec2646bdf1fd76a7e38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl }:

stdenv.mkDerivation {
  pname = "libESMTP";
  version = "1.0.6";

  src = fetchurl {
    url = "http://brianstafford.info/libesmtp/libesmtp-1.0.6.tar.bz2";
    sha256 = "02zbniyz7qys1jmx3ghx21kxmns1wc3hmv80gp7ag7yra9f1m9nh";
  };

  meta = with stdenv.lib; {
    homepage = http://brianstafford.info/libesmtp/index.html;
    description = "A Library for Posting Electronic Mail";
    license = licenses.lgpl21;
  };
}