Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 31 lines 990 B view raw
1{ stdenv, fetchzip, libtool, ghostscript, groff }: 2 3stdenv.mkDerivation rec { 4 name = "fstrcmp-${version}"; 5 version = "0.7"; 6 7 src = fetchzip { 8 url = "https://sourceforge.net/projects/fstrcmp/files/fstrcmp/${version}/fstrcmp-${version}.D001.tar.gz"; 9 sha256 = "0yg3y3k0wz50gmhgigfi2dx725w1gc8snb95ih7vpcnj6kabgz9a"; 10 }; 11 12 outputs = [ "out" "dev" "doc" "man" "devman" ]; 13 14 nativeBuildInputs = [ libtool ghostscript groff ]; 15 16 enableParallelBuilding = true; 17 18 meta = with stdenv.lib; { 19 description = "Make fuzzy comparisons of strings and byte arrays"; 20 longDescription = '' 21 The fstrcmp project provides a library that is used to make fuzzy 22 comparisons of strings and byte arrays, including multi-byte character 23 strings. 24 ''; 25 homepage = http://fstrcmp.sourceforge.net/; 26 downloadPage = https://sourceforge.net/projects/fstrcmp/; 27 license = licenses.gpl3; 28 maintainers = [ maintainers.sephalon ]; 29 platforms = platforms.unix; 30 }; 31}