depot/third_party/nixpkgs/pkgs/tools/networking/hyenae/default.nix
Default email a3bb8d7922 Project import generated by Copybara.
GitOrigin-RevId: 439b1605227b8adb1357b55ce8529d541abbe9eb
2021-08-06 00:33:18 +03:00

24 lines
620 B
Nix

{lib, stdenv, fetchurl, libdnet, pkg-config, libpcap}:
stdenv.mkDerivation rec {
pname = "hyenae";
version = "0.36-1";
enableParallelBuilding = true;
src = fetchurl {
url = "mirror://sourceforge/hyenae/${version}/hyenae-${version}.tar.gz";
sha256 = "1f3x4yn9a9p4f4wk4l8pv7hxfjc8q7cv20xzf7ky735sq1hj0xcg";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [libdnet libpcap];
meta = {
description = "";
homepage = "https://sourceforge.net/projects/hyenae/";
license = lib.licenses.gpl3;
maintainers = [lib.maintainers.marcweber];
platforms = lib.platforms.linux;
};
}