mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 03:53:47 +00:00
iouyap: remove
This commit is contained in:
parent
f9fb93497b
commit
9f66359b60
@ -1,32 +0,0 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, bison, flex }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
pname = "iouyap";
|
|
||||||
version = "0.97";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "GNS3";
|
|
||||||
repo = pname;
|
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "028s9kx67b9x7gwzg0fhc6546diw4n0x4kk1xhl3v7hbsz3wdh6s";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [ bison flex ];
|
|
||||||
|
|
||||||
# Workaround build failure on -fno-common toolchains like upstream
|
|
||||||
# gcc-10. Otherwise build fails as:
|
|
||||||
# ld: netmap.o:(.bss+0x20): multiple definition of `sizecheck'; iouyap.o:(.bss+0x20): first defined here
|
|
||||||
env.NIX_CFLAGS_COMPILE = "-fcommon";
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
install -D -m555 iouyap $out/bin/iouyap;
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Bridge IOU to UDP, TAP and Ethernet";
|
|
||||||
inherit (src.meta) homepage;
|
|
||||||
license = licenses.gpl3Plus;
|
|
||||||
platforms = platforms.linux;
|
|
||||||
maintainers = with maintainers; [ primeos ];
|
|
||||||
};
|
|
||||||
}
|
|
@ -787,6 +787,7 @@ mapAliases ({
|
|||||||
interfacer = throw "interfacer is deprecated and archived by upstream"; # Added 2022-04-05
|
interfacer = throw "interfacer is deprecated and archived by upstream"; # Added 2022-04-05
|
||||||
inter-ui = inter; # Added 2021-03-27
|
inter-ui = inter; # Added 2021-03-27
|
||||||
iops = throw "iops was removed: upstream is gone"; # Added 2022-02-06
|
iops = throw "iops was removed: upstream is gone"; # Added 2022-02-06
|
||||||
|
iouyap = throw "'iouyap' is deprecated and archived by upstream, use 'ubridge' instead"; # Added 2023-09-21
|
||||||
ipfs = kubo; # Added 2022-09-27
|
ipfs = kubo; # Added 2022-09-27
|
||||||
ipfs-migrator-all-fs-repo-migrations = kubo-migrator-all-fs-repo-migrations; # Added 2022-09-27
|
ipfs-migrator-all-fs-repo-migrations = kubo-migrator-all-fs-repo-migrations; # Added 2022-09-27
|
||||||
ipfs-migrator-unwrapped = kubo-migrator-unwrapped; # Added 2022-09-27
|
ipfs-migrator-unwrapped = kubo-migrator-unwrapped; # Added 2022-09-27
|
||||||
|
@ -9421,8 +9421,6 @@ with pkgs;
|
|||||||
|
|
||||||
ior = callPackage ../tools/system/ior { };
|
ior = callPackage ../tools/system/ior { };
|
||||||
|
|
||||||
iouyap = callPackage ../tools/networking/iouyap { };
|
|
||||||
|
|
||||||
ioztat = callPackage ../tools/filesystems/ioztat { };
|
ioztat = callPackage ../tools/filesystems/ioztat { };
|
||||||
|
|
||||||
ip2location = callPackage ../tools/networking/ip2location { };
|
ip2location = callPackage ../tools/networking/ip2location { };
|
||||||
|
Loading…
Reference in New Issue
Block a user