Merge pull request #222751 from figsoda/cargo-insta

authored by figsoda and committed by GitHub 05ccddc7 a4aaacf6

+4 -10
+4 -10
pkgs/development/tools/rust/cargo-insta/default.nix
··· 1 1 { lib 2 - , stdenv 3 2 , rustPlatform 4 3 , fetchFromGitHub 5 - , libiconv 6 4 }: 7 5 8 6 rustPlatform.buildRustPackage rec { 9 7 pname = "cargo-insta"; 10 - version = "1.28.0"; 8 + version = "1.29.0"; 11 9 12 10 src = fetchFromGitHub { 13 11 owner = "mitsuhiko"; 14 12 repo = "insta"; 15 13 rev = "refs/tags/${version}"; 16 - hash = "sha256-GqM3b2evjACNkTOyfA6N6TInuGo9f/1retkXVTgbJ3A="; 14 + hash = "sha256-3fN7otTIAdn7Bs96IaboxY0DG381AjCV/KsDzv8xng8="; 17 15 }; 18 16 19 17 sourceRoot = "source/cargo-insta"; 20 18 21 - cargoHash = "sha256-ZIS3O19N7w+sL+2IdoCw4/Hx9Jtjx7MYE7JcEu+PFRA="; 22 - 23 - buildInputs = lib.optionals stdenv.isDarwin [ 24 - libiconv 25 - ]; 19 + cargoHash = "sha256-zxf70F3x8eydQuUrrdoQljvmmTzS6ytxVlbHOCepxFg="; 26 20 27 21 meta = with lib; { 28 22 description = "A Cargo subcommand for snapshot testing"; 29 23 homepage = "https://github.com/mitsuhiko/insta"; 30 24 changelog = "https://github.com/mitsuhiko/insta/blob/${version}/CHANGELOG.md"; 31 25 license = licenses.asl20; 32 - maintainers = with lib.maintainers; [ oxalica ]; 26 + maintainers = with lib.maintainers; [ figsoda oxalica ]; 33 27 }; 34 28 }