rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / hyenae / default.nix
blobb0e579de2209469ee268d2f89729a795e7d7a196
1 {lib, stdenv, fetchurl, libdnet, pkg-config, libpcap}:
3 stdenv.mkDerivation rec {
4   pname = "hyenae";
5   version = "0.36-1";
7   enableParallelBuilding = true;
9   src = fetchurl {
10     url = "mirror://sourceforge/hyenae/${version}/hyenae-${version}.tar.gz";
11     sha256 = "1f3x4yn9a9p4f4wk4l8pv7hxfjc8q7cv20xzf7ky735sq1hj0xcg";
12   };
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [libdnet libpcap];
17   meta = {
18     description = "";
19     homepage = "https://sourceforge.net/projects/hyenae/";
20     license = lib.licenses.gpl3;
21     maintainers = [lib.maintainers.marcweber];
22     platforms = lib.platforms.linux;
23   };