nixpkgs/pkgs/tools/networking/iouyap/default.nix

28 lines
617 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, bison, flex }:
2017-09-11 17:21:49 +00:00
stdenv.mkDerivation rec {
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 lib; {
2017-09-11 17:21:49 +00:00
description = "Bridge IOU to UDP, TAP and Ethernet";
inherit (src.meta) homepage;
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ primeos ];
};
}