mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
intecture-*: drop
This commit is contained in:
parent
9c34fd2d73
commit
6e9e5dfd55
5 changed files with 3 additions and 98 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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
|
||||
|
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue