Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
22 lines
499 B
Nix
22 lines
499 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
version = "2.3.1";
|
|
pname = "libsieve";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/downloads/sodabrew/libsieve/libsieve-${version}.tar.gz";
|
|
sha256 = "1gllhl9hbmc86dq3k98d4kjs5bwk0p2rlk7ywqj3fjn7jw6mbhcj";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Interpreter for RFC 3028 Sieve and various extensions";
|
|
homepage = "http://sodabrew.com/libsieve/";
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|