par: init at 1.5.2

Issue #17521
This commit is contained in:
Jean-Luc Jox 2016-08-05 14:43:27 +10:00 committed by Moritz Ulrich
parent 53b60c8873
commit 526291231b
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{stdenv, fetchurl, fetchpatch}:
stdenv.mkDerivation {
name = "par-1.52";
src = fetchurl {
url = http://www.nicemice.net/par/Par152.tar.gz;
sha256 = "33dcdae905f4b4267b4dc1f3efb032d79705ca8d2122e17efdecfd8162067082";
};
patches = [
# A patch by Jérôme Pouiller that adds support for multibyte
# charsets (like UTF-8), plus Debian packaging.
(fetchpatch {
url = "http://sysmic.org/dl/par/par-1.52-i18n.4.patch";
sha256 = "0alw44lf511jmr38jnh4j0mpp7vclgy0grkxzqf7q158vzdb6g23";
})
];
buildPhase = ''make -f protoMakefile'';
installPhase = ''
mkdir -p $out/bin
cp par $out/bin
mkdir -p $out/share/man/man1
cp par.1 $out/share/man/man1
'';
meta = {
homepage = http://www.nicemice.net/par/;
description = "Paragraph reflow for email";
platforms = stdenv.lib.platforms.unix;
};
}

View File

@ -4223,6 +4223,8 @@ in
zimwriterfs = callPackage ../tools/text/zimwriterfs { };
par = callPackage ../tools/text/par { };
zip = callPackage ../tools/archivers/zip { };
zkfuse = callPackage ../tools/filesystems/zkfuse { };