python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / fstrcmp / default.nix
blobc91e8517b078779ce960eaea540c129b8f97d224
1 { lib, stdenv, fetchzip, libtool, ghostscript, groff, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "fstrcmp";
5   version = "0.7";
7   src = fetchzip {
8     url = "https://sourceforge.net/projects/fstrcmp/files/fstrcmp/${version}/fstrcmp-${version}.D001.tar.gz";
9     sha256 = "0yg3y3k0wz50gmhgigfi2dx725w1gc8snb95ih7vpcnj6kabgz9a";
10   };
12   patches = [ ./cross.patch ];
14   outputs = [ "out" "dev" "doc" "man" "devman" ];
16   nativeBuildInputs = [ libtool ghostscript groff autoreconfHook ];
18   enableParallelBuilding = true;
20   meta = with lib; {
21     description = "Make fuzzy comparisons of strings and byte arrays";
22     longDescription = ''
23       The fstrcmp project provides a library that is used to make fuzzy
24       comparisons of strings and byte arrays, including multi-byte character
25       strings.
26     '';
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;
32   };