iouyap: init at 0.97
This commit is contained in:
parent
6373c9606d
commit
89ae07b05b
28
pkgs/tools/networking/iouyap/default.nix
Normal file
28
pkgs/tools/networking/iouyap/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, bison, flex }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "iouyap";
|
||||||
|
version = "0.97";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "GNS3";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "028s9kx67b9x7gwzg0fhc6546diw4n0x4kk1xhl3v7hbsz3wdh6s";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ bison flex ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -D -m555 iouyap $out/bin/iouyap;
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Bridge IOU to UDP, TAP and Ethernet";
|
||||||
|
inherit (src.meta) homepage;
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ primeos ];
|
||||||
|
};
|
||||||
|
}
|
@ -2655,13 +2655,15 @@ with pkgs;
|
|||||||
|
|
||||||
intecture-cli = callPackage ../tools/admin/intecture/cli.nix { };
|
intecture-cli = callPackage ../tools/admin/intecture/cli.nix { };
|
||||||
|
|
||||||
|
iodine = callPackage ../tools/networking/iodine { };
|
||||||
|
|
||||||
ioping = callPackage ../tools/system/ioping { };
|
ioping = callPackage ../tools/system/ioping { };
|
||||||
|
|
||||||
iops = callPackage ../tools/system/iops { };
|
iops = callPackage ../tools/system/iops { };
|
||||||
|
|
||||||
ior = callPackage ../tools/system/ior { };
|
ior = callPackage ../tools/system/ior { };
|
||||||
|
|
||||||
iodine = callPackage ../tools/networking/iodine { };
|
iouyap = callPackage ../tools/networking/iouyap { };
|
||||||
|
|
||||||
ip2location = callPackage ../tools/networking/ip2location { };
|
ip2location = callPackage ../tools/networking/ip2location { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user