about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libtins
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libtins')
-rw-r--r--nixpkgs/pkgs/development/libraries/libtins/default.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libtins/default.nix b/nixpkgs/pkgs/development/libraries/libtins/default.nix
new file mode 100644
index 000000000000..7279dc9ddfa2
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libtins/default.nix
@@ -0,0 +1,47 @@
+{ boost, cmake, fetchFromGitHub, gtest, libpcap, openssl, lib, stdenv }:
+
+stdenv.mkDerivation rec {
+  pname = "libtins";
+  version = "4.3";
+
+  src = fetchFromGitHub {
+    owner = "mfontanini";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "09ah1a7ska7xiki7625mn1d8i96il3hxbkc39ba8fn1a5383kmqa";
+  };
+
+  postPatch = ''
+    rm -rf googletest
+    cp -r ${gtest.src}/googletest googletest
+    chmod -R a+w googletest
+  '';
+
+  nativeBuildInputs = [ cmake gtest ];
+  buildInputs = [
+    openssl
+    libpcap
+    boost
+  ];
+
+  configureFlags = [
+    "--with-boost-libdir=${boost.out}/lib"
+    "--with-boost=${boost.dev}"
+  ];
+
+  doCheck = true;
+  preCheck = ''
+    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}$PWD${placeholder "out"}/lib
+    export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH''${DYLD_LIBRARY_PATH:+:}$PWD${placeholder "out"}/lib
+  '';
+  checkTarget = "tests test";
+
+  meta = with lib; {
+    description = "High-level, multiplatform C++ network packet sniffing and crafting library";
+    homepage = "https://libtins.github.io/";
+    changelog = "https://raw.githubusercontent.com/mfontanini/${pname}/v${version}/CHANGES.md";
+    license = lib.licenses.bsd2;
+    maintainers = with maintainers; [ fdns ];
+    platforms = lib.platforms.unix;
+  };
+}