diff --git a/pkgs/tools/admin/intecture/agent.nix b/pkgs/tools/admin/intecture/agent.nix deleted file mode 100644 index 33145e0e548f..000000000000 --- a/pkgs/tools/admin/intecture/agent.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ lib, fetchFromGitHub, rustPlatform -, openssl, zeromq, czmq, pkg-config, cmake, zlib }: - -with rustPlatform; - -buildRustPackage rec { - pname = "intecture-agent"; - version = "0.3.1"; - - src = fetchFromGitHub { - owner = "intecture"; - repo = "agent"; - rev = version; - sha256 = "0j27qdgyxybaixggh7k57mpm6rifimn4z2vydk463msc8b3kgywj"; - }; - - cargoSha256 = "0j7yv00ipaa60hpakfj60xrblcyzjwi0lp2hpzz41vq3p9bkigvm"; - - buildInputs = [ openssl zeromq czmq zlib ]; - - nativeBuildInputs = [ pkg-config cmake ]; - - meta = with lib; { - description = "Authentication client/server for Intecture components"; - homepage = "https://intecture.io"; - license = licenses.mpl20; - maintainers = [ maintainers.rushmorem ]; - }; -} diff --git a/pkgs/tools/admin/intecture/auth.nix b/pkgs/tools/admin/intecture/auth.nix deleted file mode 100644 index 5fe81b78c9a6..000000000000 --- a/pkgs/tools/admin/intecture/auth.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ lib, fetchFromGitHub, rustPlatform -, openssl, zeromq, czmq, pkg-config, cmake, zlib }: - -with rustPlatform; - -buildRustPackage rec { - pname = "intecture-auth"; - version = "0.1.2"; - - src = fetchFromGitHub { - owner = "intecture"; - repo = "auth"; - rev = version; - sha256 = "0c7ar3pc7n59lzfy74lwz51p09s2bglc870rfr4c0vmc91jl0pj2"; - }; - - cargoSha256 = "15f7lb0xxaxvhvj8g3kjmqy5jzy4pyzwk3zfdvykphpg18qgg6qj"; - - buildInputs = [ openssl zeromq czmq zlib ]; - - nativeBuildInputs = [ pkg-config cmake ]; - - meta = with lib; { - description = "Authentication client/server for Intecture components"; - homepage = "https://intecture.io"; - license = licenses.mpl20; - maintainers = [ maintainers.rushmorem ]; - }; -} diff --git a/pkgs/tools/admin/intecture/cli.nix b/pkgs/tools/admin/intecture/cli.nix deleted file mode 100644 index 9b543b40498e..000000000000 --- a/pkgs/tools/admin/intecture/cli.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ lib, fetchFromGitHub, rustPlatform -, openssl, zeromq, czmq, pkg-config, cmake, zlib }: - -with rustPlatform; - -buildRustPackage rec { - pname = "intecture-cli"; - version = "0.3.4"; - - src = fetchFromGitHub { - owner = "intecture"; - repo = "cli"; - rev = version; - sha256 = "16a5fkpyqkf8w20k3ircc1d0qmif7nygkzxj6mzk9609dlb0dmxq"; - }; - - cargoSha256 = "09phc0gxz1amrk1bbl5ajg0jmgxcqm4xzbvq3nj58qps991kvgf1"; - - buildInputs = [ openssl zeromq czmq zlib ]; - - nativeBuildInputs = [ pkg-config cmake ]; - - # Needed for tests - USER = "$(whoami)"; - - meta = with lib; { - description = "A developer friendly, language agnostic configuration management tool for server systems"; - homepage = "https://intecture.io"; - license = licenses.mpl20; - maintainers = [ maintainers.rushmorem ]; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index f8099e2f9ce4..ab0b43f8ee96 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -498,6 +498,9 @@ mapAliases ({ infiniband-diags = rdma-core; # Added 2019-08-09 ino = throw "ino has been removed from nixpkgs, the project is stuck on python2 and upstream has archived the project"; # Added 2022-01-12 inotifyTools = inotify-tools; + intecture-agent = throw "intecture-agent has been removed, because it was no longer maintained upstream"; # added 2021-12-15 + intecture-auth = throw "intecture-auth has been removed, because it was no longer maintained upstream"; # added 2021-12-15 + intecture-cli = throw "intecture-cli has been removed, because it was no longer maintained upstream"; # added 2021-12-15 inter-ui = inter; # Added 2021-03-27 iops = throw "iops was removed: upstream is gone"; # Added 2022-02-06 iproute = iproute2; # moved from top-level 2021-03-14 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 90fb74cf2b79..7602e851baa1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6793,14 +6793,6 @@ with pkgs; inql = callPackage ../tools/security/inql { }; - intecture-agent = callPackage ../tools/admin/intecture/agent.nix { }; - - intecture-auth = callPackage ../tools/admin/intecture/auth.nix { }; - - intecture-cli = callPackage ../tools/admin/intecture/cli.nix { - openssl = openssl_1_0_2; - }; - intel-media-sdk = callPackage ../development/libraries/intel-media-sdk { }; intermodal = callPackage ../tools/misc/intermodal { };