tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libprotoident: init at 2.0.15-2
Nico Felbinger
8 months ago
bc2d7512
1fc7dddb
+48
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
li
libprotoident
package.nix
+48
pkgs/by-name/li/libprotoident/package.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
stdenv,
4
4
+
fetchFromGitHub,
5
5
+
autoreconfHook,
6
6
+
pkg-config,
7
7
+
bison,
8
8
+
flex,
9
9
+
libtrace,
10
10
+
libflowmanager,
11
11
+
nix-update-script,
12
12
+
}:
13
13
+
14
14
+
stdenv.mkDerivation (finalAttrs: {
15
15
+
pname = "libprotoident";
16
16
+
version = "2.0.15-2";
17
17
+
18
18
+
src = fetchFromGitHub {
19
19
+
owner = "LibtraceTeam";
20
20
+
repo = "libprotoident";
21
21
+
tag = finalAttrs.version;
22
22
+
hash = "sha256-XiZ/UqF11eeeGudNXJqtTfPn5xWvHPKPrgqV7iHii0M=";
23
23
+
};
24
24
+
25
25
+
strictDeps = true;
26
26
+
27
27
+
nativeBuildInputs = [
28
28
+
autoreconfHook
29
29
+
pkg-config
30
30
+
bison
31
31
+
flex
32
32
+
];
33
33
+
buildInputs = [
34
34
+
libtrace
35
35
+
libflowmanager
36
36
+
];
37
37
+
38
38
+
passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex=^([0-9.-]+)$" ]; };
39
39
+
40
40
+
meta = {
41
41
+
description = "Network traffic classification library that requires minimal application payload";
42
42
+
homepage = "https://github.com/LibtraceTeam/libprotoident";
43
43
+
changelog = "https://github.com/LibtraceTeam/libprotoident/releases/tag/${finalAttrs.version}";
44
44
+
license = lib.licenses.lgpl3Plus;
45
45
+
maintainers = with lib.maintainers; [ felbinger ];
46
46
+
platforms = lib.platforms.unix;
47
47
+
};
48
48
+
})