1 { lib, stdenv, fetchzip, libtool, ghostscript, groff, autoreconfHook }:
3 stdenv.mkDerivation rec {
8 url = "https://sourceforge.net/projects/fstrcmp/files/fstrcmp/${version}/fstrcmp-${version}.D001.tar.gz";
9 sha256 = "0yg3y3k0wz50gmhgigfi2dx725w1gc8snb95ih7vpcnj6kabgz9a";
12 patches = [ ./cross.patch ];
14 outputs = [ "out" "dev" "doc" "man" "devman" ];
16 nativeBuildInputs = [ libtool ghostscript groff autoreconfHook ];
18 enableParallelBuilding = true;
21 description = "Make fuzzy comparisons of strings and byte arrays";
23 The fstrcmp project provides a library that is used to make fuzzy
24 comparisons of strings and byte arrays, including multi-byte character
27 homepage = "http://fstrcmp.sourceforge.net/";
28 downloadPage = "https://sourceforge.net/projects/fstrcmp/";
29 license = licenses.gpl3;
30 maintainers = [ maintainers.sephalon ];
31 platforms = platforms.unix;