From 9912d4dcb164ad7607831a7c7ee3c37707695f27 Mon Sep 17 00:00:00 2001 From: figsoda Date: Thu, 23 Mar 2023 11:59:38 -0400 Subject: [PATCH] cargo-insta: 1.28.0 -> 1.29.0, add figsoda as a maintainer Diff: https://github.com/mitsuhiko/insta/compare/refs/tags/1.28.0...1.29.0 Changelog: https://github.com/mitsuhiko/insta/blob/1.29.0/CHANGELOG.md --- .../development/tools/rust/cargo-insta/default.nix | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/pkgs/development/tools/rust/cargo-insta/default.nix b/pkgs/development/tools/rust/cargo-insta/default.nix index 8c1b6d4a6514..7c74eef89b70 100644 --- a/pkgs/development/tools/rust/cargo-insta/default.nix +++ b/pkgs/development/tools/rust/cargo-insta/default.nix @@ -1,34 +1,28 @@ { lib -, stdenv , rustPlatform , fetchFromGitHub -, libiconv }: rustPlatform.buildRustPackage rec { pname = "cargo-insta"; - version = "1.28.0"; + version = "1.29.0"; src = fetchFromGitHub { owner = "mitsuhiko"; repo = "insta"; rev = "refs/tags/${version}"; - hash = "sha256-GqM3b2evjACNkTOyfA6N6TInuGo9f/1retkXVTgbJ3A="; + hash = "sha256-3fN7otTIAdn7Bs96IaboxY0DG381AjCV/KsDzv8xng8="; }; sourceRoot = "source/cargo-insta"; - cargoHash = "sha256-ZIS3O19N7w+sL+2IdoCw4/Hx9Jtjx7MYE7JcEu+PFRA="; - - buildInputs = lib.optionals stdenv.isDarwin [ - libiconv - ]; + cargoHash = "sha256-zxf70F3x8eydQuUrrdoQljvmmTzS6ytxVlbHOCepxFg="; meta = with lib; { description = "A Cargo subcommand for snapshot testing"; homepage = "https://github.com/mitsuhiko/insta"; changelog = "https://github.com/mitsuhiko/insta/blob/${version}/CHANGELOG.md"; license = licenses.asl20; - maintainers = with lib.maintainers; [ oxalica ]; + maintainers = with lib.maintainers; [ figsoda oxalica ]; }; }