69 lines
1.3 KiB
Nix
69 lines
1.3 KiB
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
rustPlatform,
|
||
|
|
fetchFromGitHub,
|
||
|
|
nix-update-script,
|
||
|
|
pkg-config,
|
||
|
|
bzip2,
|
||
|
|
xz,
|
||
|
|
zstd,
|
||
|
|
git,
|
||
|
|
rustup,
|
||
|
|
}:
|
||
|
|
|
||
|
|
rustPlatform.buildRustPackage rec {
|
||
|
|
pname = "cargo-dist";
|
||
|
|
version = "0.30.0";
|
||
|
|
|
||
|
|
src = fetchFromGitHub {
|
||
|
|
owner = "axodotdev";
|
||
|
|
repo = "cargo-dist";
|
||
|
|
rev = "v${version}";
|
||
|
|
hash = "sha256-+Nzli2SDzG+CBNSZ5z2mAuucS2a3WS7HqtUJs2JxIbo=";
|
||
|
|
};
|
||
|
|
|
||
|
|
cargoHash = "sha256-QjWBuI3hZkDNqyCNfFpz6qvZUYHEKRQZ4gbZGxkMaiw=";
|
||
|
|
|
||
|
|
nativeBuildInputs = [
|
||
|
|
pkg-config
|
||
|
|
];
|
||
|
|
|
||
|
|
buildInputs = [
|
||
|
|
bzip2
|
||
|
|
xz
|
||
|
|
zstd
|
||
|
|
];
|
||
|
|
|
||
|
|
nativeCheckInputs = [
|
||
|
|
git
|
||
|
|
rustup
|
||
|
|
];
|
||
|
|
|
||
|
|
env = {
|
||
|
|
ZSTD_SYS_USE_PKG_CONFIG = true;
|
||
|
|
};
|
||
|
|
|
||
|
|
# remove tests that require internet access
|
||
|
|
postPatch = ''
|
||
|
|
rm cargo-dist/tests/cli-tests.rs cargo-dist/tests/integration-tests.rs
|
||
|
|
'';
|
||
|
|
|
||
|
|
passthru.updateScript = nix-update-script { };
|
||
|
|
|
||
|
|
meta = with lib; {
|
||
|
|
description = "Tool for building final distributable artifacts and uploading them to an archive";
|
||
|
|
mainProgram = "dist";
|
||
|
|
homepage = "https://github.com/axodotdev/cargo-dist";
|
||
|
|
changelog = "https://github.com/axodotdev/cargo-dist/blob/${src.rev}/CHANGELOG.md";
|
||
|
|
license = with licenses; [
|
||
|
|
asl20
|
||
|
|
mit
|
||
|
|
];
|
||
|
|
maintainers = with maintainers; [
|
||
|
|
figsoda
|
||
|
|
matthiasbeyer
|
||
|
|
mistydemeo
|
||
|
|
];
|
||
|
|
};
|
||
|
|
}
|