nixpkgs/pkgs/development/libraries/libcrafter/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
805 B
Nix
Raw Normal View History

2022-01-04 15:38:41 +00:00
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, libpcap }:
2015-05-08 11:19:31 +00:00
stdenv.mkDerivation rec {
pname = "libcrafter";
2020-07-16 06:47:54 +00:00
version = "1.0";
2015-05-08 11:48:26 +00:00
2022-01-04 15:38:41 +00:00
src = fetchFromGitHub {
owner = "pellegre";
repo = "libcrafter";
rev = "version-${version}";
sha256 = "sha256-tCdN3+EzISVl+wp5umOFD+bgV+uUdabH+2LyxlV/W7Q=";
2015-05-08 11:19:31 +00:00
};
2015-05-08 11:48:26 +00:00
2015-05-08 11:19:31 +00:00
preConfigure = "cd libcrafter";
configureScript = "./autogen.sh";
configureFlags = [ "--with-libpcap=yes" ];
nativeBuildInputs = [ autoconf automake ];
buildInputs = [ libtool ];
2015-05-08 11:19:31 +00:00
propagatedBuildInputs = [ libpcap ];
meta = {
homepage = "https://github.com/pellegre/libcrafter";
2015-05-08 11:19:31 +00:00
description = "High level C++ network packet sniffing and crafting library";
license = lib.licenses.bsd3;
maintainers = [ ];
platforms = lib.platforms.unix;
2015-05-08 11:19:31 +00:00
};
}