
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>
33 lines
622 B
Nix
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;
|
|
};
|
|
}
|