mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 03:53:47 +00:00
Merge pull request #334418 from techknowlogick/rm-hopin
hop-cli: remove pkg
This commit is contained in:
commit
629a4897b4
@ -1,50 +0,0 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, openssl
|
||||
, stdenv
|
||||
, CoreServices
|
||||
, Security
|
||||
, SystemConfiguration
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "hop-cli";
|
||||
version = "0.2.61";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hopinc";
|
||||
repo = "cli";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-omKLUe4JxF3SN4FHbO6YpIRt97f8wWY3oy7VHfvONRc=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-yZKTVF810v27CnjwocEE2KYtrXggdEFPbKH5/4MMMhQ=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
openssl
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
CoreServices Security SystemConfiguration
|
||||
];
|
||||
|
||||
OPENSSL_NO_VENDOR = 1;
|
||||
|
||||
checkFlags = [
|
||||
# This test fails on read-only filesystems
|
||||
"--skip=commands::volumes::utils::test::test_parse_target_from_path_like"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
mainProgram = "hop";
|
||||
description = "Interact with Hop in your terminal";
|
||||
homepage = "https://github.com/hopinc/cli";
|
||||
changelog = "https://github.com/hopinc/cli/releases/tag/v${version}";
|
||||
license = licenses.mpl20;
|
||||
maintainers = with maintainers; [ techknowlogick ];
|
||||
};
|
||||
}
|
@ -15477,9 +15477,7 @@ with pkgs;
|
||||
|
||||
hop = callPackage ../development/compilers/hop { };
|
||||
|
||||
hop-cli = callPackage ../tools/admin/hop-cli {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices Security SystemConfiguration;
|
||||
};
|
||||
hop-cli = throw "hop-cli has been removed as the service has been shut-down"; #Added 2024-08-13
|
||||
|
||||
falcon = callPackage ../development/interpreters/falcon {
|
||||
stdenv = gcc10Stdenv;
|
||||
|
Loading…
Reference in New Issue
Block a user