Merge pull request #282962 from mistydemeo/cargo-dist-0_8_0

cargo-dist: 0.7.2 -> 0.8.0

authored by Matthias Beyer and committed by GitHub ebead94f c8cc3c0a

+13 -4
+6
maintainers/maintainer-list.nix
··· 12388 12388 fingerprint = "7088 C742 1873 E0DB 97FF 17C2 245C AB70 B4C2 25E9"; 12389 12389 }]; 12390 12390 }; 12391 + mistydemeo = { 12392 + email = "misty@axo.dev"; 12393 + github = "mistydemeo"; 12394 + githubId = 780485; 12395 + name = "Misty De Méo"; 12396 + }; 12391 12397 misuzu = { 12392 12398 email = "bakalolka@gmail.com"; 12393 12399 github = "misuzu";
+7 -4
pkgs/development/tools/rust/cargo-dist/default.nix
··· 1 1 { lib 2 2 , rustPlatform 3 3 , fetchFromGitHub 4 + , nix-update-script 4 5 , pkg-config 5 6 , bzip2 6 7 , xz ··· 13 14 14 15 rustPlatform.buildRustPackage rec { 15 16 pname = "cargo-dist"; 16 - version = "0.7.2"; 17 + version = "0.8.0"; 17 18 18 19 src = fetchFromGitHub { 19 20 owner = "axodotdev"; 20 21 repo = "cargo-dist"; 21 22 rev = "v${version}"; 22 - hash = "sha256-K+pqyH3Ajfp+tPhAuK7XCNfGdXa15oNqfsQcogvmQ8o="; 23 + hash = "sha256-AyxC1YS1VvCBIS6lKDtT2zX3bhorF4G+qg+brm4tJm8="; 23 24 }; 24 25 25 - cargoHash = "sha256-ZJdVhSznznnF1P28XkwtoeWoeymtPNaAZgOaKby+gnk="; 26 + cargoHash = "sha256-kStLY/Hjj0DeisjXzw2BbmJalNljUP0ogBEXcoDX3FE="; 26 27 27 28 nativeBuildInputs = [ 28 29 pkg-config ··· 51 52 rm cargo-dist/tests/cli-tests.rs 52 53 ''; 53 54 55 + passthru.updateScript = nix-update-script { }; 56 + 54 57 meta = with lib; { 55 58 description = "A tool for building final distributable artifacts and uploading them to an archive"; 56 59 homepage = "https://github.com/axodotdev/cargo-dist"; 57 60 changelog = "https://github.com/axodotdev/cargo-dist/blob/${src.rev}/CHANGELOG.md"; 58 61 license = with licenses; [ asl20 mit ]; 59 - maintainers = with maintainers; [ figsoda matthiasbeyer ]; 62 + maintainers = with maintainers; [ figsoda matthiasbeyer mistydemeo ]; 60 63 }; 61 64 }