cargo-dist 0.5.0 -> 0.7.2 https://repology.org/project/cargo-dist/versions attrpath: cargo-dist Checking auto update branch... No auto update branch exists Old version 0.5.0" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , pkg-config , bzip2 , xz , zstd , stdenv , darwin , git , rustup }: rustPlatform.buildRustPackage rec { pname = "cargo-dist"; version = "0.7.2"; src = fetchFromGitHub { owner = "axodotdev"; repo = "cargo-dist"; rev = "v${version}"; hash = "sha256-K+pqyH3Ajfp+tPhAuK7XCNfGdXa15oNqfsQcogvmQ8o="; }; cargoHash = "sha256-ZJdVhSznznnF1P28XkwtoeWoeymtPNaAZgOaKby+gnk="; nativeBuildInputs = [ pkg-config ]; buildInputs = [ bzip2 xz zstd ] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.SystemConfiguration ]; nativeCheckInputs = [ git rustup ]; env = { ZSTD_SYS_USE_PKG_CONFIG = true; }; # remove tests that require internet access and a git repo postPatch = '' rm cargo-dist/tests/integration-tests.rs rm cargo-dist/tests/cli-tests.rs ''; meta = with lib; { description = "A tool for building final distributable artifacts and uploading them to an archive"; 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 ]; }; }