Philip Taron 22b88ba79d
treewide: adjust meta descriptions to avoid definite or indefinite articles
This patch was produced in Vim by me, a human being. All errors are the fault of the operator. I did try to be careful.

Co-authored-by: Peder Bergebakken Sundt <pbsds@hotmail.com>
Co-authored-by: dotlambda <nix@dotlambda.de>
2025-06-05 11:04:25 -07:00

33 lines
622 B
Nix

{
stdenv,
fetchurl,
lib,
perl,
}:
stdenv.mkDerivation rec {
pname = "courier-unicode";
version = "2.3.2";
src = fetchurl {
url = "mirror://sourceforge/courier/courier-unicode/${version}/courier-unicode-${version}.tar.bz2";
sha256 = "sha256-tkXS8AqrvGgjIO3mlspQIBJm9xChvOxKxQQmlcmef2k=";
};
nativeBuildInputs = [
perl
];
outputs = [
"out"
"dev"
];
meta = {
homepage = "http://www.courier-mta.org/unicode/";
description = "Courier Unicode Library is used by most other Courier packages";
license = lib.licenses.gpl3;
platforms = lib.platforms.linux;
};
}