lol

iouyap: remove

authored by

Anthony Roussel and committed by
Anderson Torres
9f66359b f9fb9349

+1 -34
-32
pkgs/tools/networking/iouyap/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, bison, flex }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "iouyap"; 5 - version = "0.97"; 6 - 7 - src = fetchFromGitHub { 8 - owner = "GNS3"; 9 - repo = pname; 10 - rev = "v${version}"; 11 - sha256 = "028s9kx67b9x7gwzg0fhc6546diw4n0x4kk1xhl3v7hbsz3wdh6s"; 12 - }; 13 - 14 - buildInputs = [ bison flex ]; 15 - 16 - # Workaround build failure on -fno-common toolchains like upstream 17 - # gcc-10. Otherwise build fails as: 18 - # ld: netmap.o:(.bss+0x20): multiple definition of `sizecheck'; iouyap.o:(.bss+0x20): first defined here 19 - env.NIX_CFLAGS_COMPILE = "-fcommon"; 20 - 21 - installPhase = '' 22 - install -D -m555 iouyap $out/bin/iouyap; 23 - ''; 24 - 25 - meta = with lib; { 26 - description = "Bridge IOU to UDP, TAP and Ethernet"; 27 - inherit (src.meta) homepage; 28 - license = licenses.gpl3Plus; 29 - platforms = platforms.linux; 30 - maintainers = with maintainers; [ primeos ]; 31 - }; 32 - }
+1
pkgs/top-level/aliases.nix
··· 787 787 interfacer = throw "interfacer is deprecated and archived by upstream"; # Added 2022-04-05 788 788 inter-ui = inter; # Added 2021-03-27 789 789 iops = throw "iops was removed: upstream is gone"; # Added 2022-02-06 790 + iouyap = throw "'iouyap' is deprecated and archived by upstream, use 'ubridge' instead"; # Added 2023-09-21 790 791 ipfs = kubo; # Added 2022-09-27 791 792 ipfs-migrator-all-fs-repo-migrations = kubo-migrator-all-fs-repo-migrations; # Added 2022-09-27 792 793 ipfs-migrator-unwrapped = kubo-migrator-unwrapped; # Added 2022-09-27
-2
pkgs/top-level/all-packages.nix
··· 9421 9421 9422 9422 ior = callPackage ../tools/system/ior { }; 9423 9423 9424 - iouyap = callPackage ../tools/networking/iouyap { }; 9425 - 9426 9424 ioztat = callPackage ../tools/filesystems/ioztat { }; 9427 9425 9428 9426 ip2location = callPackage ../tools/networking/ip2location { };