hydra-cli: 0.3.0 -> 0.3.0-unstable-2023-12-20

This commit is contained in:
aleksana 2024-07-16 18:15:27 +08:00
parent 74d38fdb30
commit a9a2f78ab9
2 changed files with 17 additions and 2010 deletions

File diff suppressed because it is too large Load Diff

View File

@ -5,22 +5,24 @@
, openssl
, stdenv
, darwin
, testers
, hydra-cli
}:
rustPlatform.buildRustPackage rec {
pname = "hydra-cli";
version = "0.3.0";
version = "0.3.0-unstable-2023-12-20";
src = fetchFromGitHub {
owner = "nlewo";
repo = pname;
rev = "v${version}";
sha256 = "1fd3swdjx249971ak1bgndm5kh6rlzbfywmydn122lhfi6ry6a03";
repo = "hydra-cli";
rev = "dbb6eaa45c362969382bae7142085be769fa14e6";
hash = "sha256-6L+5rkXzjXH9JtLsrJkuV8ZMsm64Q+kcb+2pr1coBK4=";
};
cargoLock = {
lockFile = ./Cargo.lock;
};
sourceRoot = "${src.name}/hydra-cli";
cargoHash = "sha256-WokdTMNA7MrbFcKNeFIRU2Tw6LyM80plDoZPX1v/hrc=";
nativeBuildInputs = [
pkg-config
@ -32,18 +34,18 @@ rustPlatform.buildRustPackage rec {
darwin.apple_sdk.frameworks.Security
];
# build fails due to outdated socket2 dependency
postPatch = ''
ln -sf ${./Cargo.lock} Cargo.lock
'';
__darwinAllowLocalNetworking = true;
meta = with lib; {
passthru.tests.version = testers.testVersion {
package = hydra-cli;
version = "0.3.0";
};
meta = {
description = "Client for the Hydra CI";
mainProgram = "hydra-cli";
homepage = "https://github.com/nlewo/hydra-cli";
license = with licenses; [ mit ];
maintainers = with maintainers; [ lewo ];
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ lewo ];
};
}