about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libnet
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libnet')
-rw-r--r--nixpkgs/pkgs/development/libraries/libnet/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libnet/default.nix b/nixpkgs/pkgs/development/libraries/libnet/default.nix
new file mode 100644
index 000000000000..b835844491fb
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libnet/default.nix
@@ -0,0 +1,28 @@
+{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool }:
+
+stdenv.mkDerivation rec {
+  pname = "libnet";
+  version = "1.3";
+
+  src = fetchFromGitHub {
+    owner = "sam-github";
+    repo = "libnet";
+    rev = "v${version}";
+    hash = "sha256-P3LaDMMNPyEnA8nO1Bm7H0mW/hVBr0cFdg+p2JmWcGI=";
+  };
+
+  nativeBuildInputs = [
+    autoconf
+    automake
+    libtool
+  ];
+
+  preConfigure = "./autogen.sh";
+
+  meta = with lib; {
+    homepage = "https://github.com/sam-github/libnet";
+    description = "Portable framework for low-level network packet construction";
+    license = licenses.bsd3;
+    platforms = platforms.unix;
+  };
+}