2014-10-10 16:14:24 +01:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "2.3.1";
|
|
|
|
name = "libsieve-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/downloads/sodabrew/libsieve/libsieve-${version}.tar.gz";
|
|
|
|
sha256 = "1gllhl9hbmc86dq3k98d4kjs5bwk0p2rlk7ywqj3fjn7jw6mbhcj";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An interpreter for RFC 3028 Sieve and various extensions";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://sodabrew.com/libsieve/;
|
2014-10-10 16:14:24 +01:00
|
|
|
license = licenses.lgpl21;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = platforms.unix;
|
2014-10-10 16:14:24 +01:00
|
|
|
};
|
|
|
|
}
|