Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

fstrcmp: init at 0.7

+33
+31
pkgs/development/libraries/fstrcmp/default.nix
···
··· 1 + { stdenv, fetchzip, libtool, ghostscript, groff }: 2 + 3 + stdenv.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 + }
+2
pkgs/top-level/all-packages.nix
··· 9568 9569 frog = self.languageMachines.frog; 9570 9571 fstrm = callPackage ../development/libraries/fstrm { }; 9572 9573 cfitsio = callPackage ../development/libraries/cfitsio { };
··· 9568 9569 frog = self.languageMachines.frog; 9570 9571 + fstrcmp = callPackage ../development/libraries/fstrcmp { }; 9572 + 9573 fstrm = callPackage ../development/libraries/fstrm { }; 9574 9575 cfitsio = callPackage ../development/libraries/cfitsio { };