mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
f5fa5fa4d6
* 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
18 lines
503 B
Nix
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;
|
|
};
|
|
}
|