about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/iouyap/default.nix
blob: c37b409cdfb594cc16f5ca7e5d008ac67c292fe7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 ];
  };
}