Merge pull request #263382 from msfjarvis/hs/cargo-dist-0.4.0

cargo-dist: 0.3.1 -> 0.4.0

authored by Fabián Heredia Montiel and committed by GitHub 85befdd8 6df9fd32

+3 -4
+3 -4
pkgs/development/tools/rust/cargo-dist/default.nix
··· 13 13 14 14 rustPlatform.buildRustPackage rec { 15 15 pname = "cargo-dist"; 16 - version = "0.3.1"; 16 + version = "0.4.0"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "axodotdev"; 20 20 repo = "cargo-dist"; 21 21 rev = "v${version}"; 22 - hash = "sha256-h3ga4H9gIS3H6krPqXyYHMIhlxFQPbEfZV8cpQWWhpw="; 22 + hash = "sha256-Y4dCkyOAOQRnaHWMuPTpjgIqlnzYw+sQbTyxp1pO7oo="; 23 23 }; 24 24 25 - cargoHash = "sha256-RP4/bcKA+5tjBFkR6DGNUPLpi/1fZAsRZeLMRSg1aes="; 25 + cargoHash = "sha256-Fuc5lToojwcRbcKrApQ8vxd8ZdjEJTDQULYfzV4K4GA="; 26 26 27 27 nativeBuildInputs = [ 28 28 pkg-config ··· 38 38 39 39 nativeCheckInputs = [ 40 40 git 41 - ] ++ lib.optionals stdenv.isDarwin [ 42 41 rustup 43 42 ]; 44 43