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

libnetfilter_queue: add license

+3 -3
+3 -3
pkgs/development/libraries/libnetfilter_queue/default.nix
··· 12 nativeBuildInputs = [ pkgconfig ]; 13 buildInputs = [ libmnl libnfnetlink ]; 14 15 - meta = { 16 homepage = http://www.netfilter.org/projects/libnetfilter_queue/; 17 description = "Userspace API to packets queued by the kernel packet filter"; 18 - 19 - platforms = stdenv.lib.platforms.linux; 20 }; 21 }
··· 12 nativeBuildInputs = [ pkgconfig ]; 13 buildInputs = [ libmnl libnfnetlink ]; 14 15 + meta = with stdenv.lib; { 16 homepage = http://www.netfilter.org/projects/libnetfilter_queue/; 17 description = "Userspace API to packets queued by the kernel packet filter"; 18 + license = licenses.gpl2; 19 + platforms = platforms.linux; 20 }; 21 }