burn-central-cli: init at 0.4.0 (#498738)
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
pkg-config,
|
||||
openssl,
|
||||
zlib,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage (finalAttrs: {
|
||||
pname = "burn-central-cli";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tracel-ai";
|
||||
repo = "burn-central-cli";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-gZ92DFZPox6s4+EKPQ/uxWNV5+F7kYhSnv/Mtpur3Vo=";
|
||||
};
|
||||
|
||||
buildAndTestSubdir = "crates/burn-central-cli";
|
||||
|
||||
cargoHash = "sha256-kUCjkkIog+xXFMTw8LAoHE/D6aBPR6S7Mtqg/Hjuw+o=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
openssl
|
||||
# Pulled in by flate2
|
||||
zlib
|
||||
];
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Command-line tool for interacting with Burn Central";
|
||||
longDescription = ''
|
||||
The Burn Central CLI (burn) is the command-line tool for interacting
|
||||
with Burn Central, the centralized platform for experiment tracking,
|
||||
model sharing, and deployment for Burn users.
|
||||
'';
|
||||
homepage = "https://github.com/tracel-ai/burn-central-cli";
|
||||
changelog = "https://github.com/tracel-ai/burn-central-cli/releases/tag/v${finalAttrs.version}";
|
||||
license = with lib.licenses; [
|
||||
mit
|
||||
asl20
|
||||
];
|
||||
maintainers = with lib.maintainers; [ kilyanni ];
|
||||
mainProgram = "burn";
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user