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
libnetfilter_queue: add license
Markus Kowalewski
7 years ago
4e6d420d
2ebc15f2
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libnetfilter_queue
default.nix
+3
-3
pkgs/development/libraries/libnetfilter_queue/default.nix
···
12
12
nativeBuildInputs = [ pkgconfig ];
13
13
buildInputs = [ libmnl libnfnetlink ];
14
14
15
15
-
meta = {
15
15
+
meta = with stdenv.lib; {
16
16
homepage = http://www.netfilter.org/projects/libnetfilter_queue/;
17
17
description = "Userspace API to packets queued by the kernel packet filter";
18
18
-
19
19
-
platforms = stdenv.lib.platforms.linux;
18
18
+
license = licenses.gpl2;
19
19
+
platforms = platforms.linux;
20
20
};
21
21
}