tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
fstrcmp: init at 0.7
Stefan Wiehler
7 years ago
beeaebad
408e8ca6
+33
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
fstrcmp
default.nix
top-level
all-packages.nix
+31
pkgs/development/libraries/fstrcmp/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
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
0
0
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 { };