uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
31
pkgs/tools/networking/libnids/default.nix
Normal file
31
pkgs/tools/networking/libnids/default.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{ lib, stdenv, fetchzip, libpcap, glib, pkg-config, libnet }:
|
||||
stdenv.mkDerivation {
|
||||
pname = "libnids";
|
||||
version = "1.24";
|
||||
src = fetchzip {
|
||||
url = "mirror://sourceforge/libnids/libnids-1.24.tar.gz";
|
||||
sha256 = "1cblklfdfxcmy0an6xyyzx4l877xdawhjd28daqfsvrh81mb07k1";
|
||||
};
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ libpcap glib libnet ];
|
||||
|
||||
/*
|
||||
Quoting the documentation of glib: g_thread_init has been deprecated since
|
||||
version 2.32 and should not be used in newly-written code. This function is
|
||||
no longer necessary. The GLib threading system is automatically initialized
|
||||
at the start of your program.
|
||||
|
||||
this is necessary for dsniff to compile; otherwise g_thread_init is a missing
|
||||
symbol when linking (?!?)
|
||||
*/
|
||||
NIX_CFLAGS_COMPILE="-Dg_thread_init= ";
|
||||
|
||||
meta = with lib; {
|
||||
description = "An E-component of Network Intrusion Detection System which emulates the IP stack of Linux 2.0.x";
|
||||
homepage = "http://libnids.sourceforge.net/";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.symphorien ];
|
||||
# probably also bsd and solaris
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue