nixpkgs/pkgs/development/libraries/libsieve/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

18 lines
503 B
Nix

{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";
homepage = http://sodabrew.com/libsieve/;
license = licenses.lgpl21;
platforms = platforms.unix;
};
}