Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{lib, stdenv, fetchurl}: 2stdenv.mkDerivation rec { 3 version = "2.3.1"; 4 pname = "libsieve"; 5 6 src = fetchurl { 7 url = "https://github.com/downloads/sodabrew/libsieve/libsieve-${version}.tar.gz"; 8 sha256 = "1gllhl9hbmc86dq3k98d4kjs5bwk0p2rlk7ywqj3fjn7jw6mbhcj"; 9 }; 10 11 meta = with lib; { 12 description = "An interpreter for RFC 3028 Sieve and various extensions"; 13 homepage = "http://sodabrew.com/libsieve/"; 14 license = licenses.lgpl21; 15 platforms = platforms.unix; 16 }; 17}