Unverified Commit 3e2dc720 authored by Gergő Gutyina's avatar Gergő Gutyina Committed by GitHub
Browse files

git-igitt: 0.1.18 -> 0.1.19 (#468484)

parents 59007cae e7592f9e
Loading
Loading
Loading
Loading
+6 −9
Original line number Diff line number Diff line
@@ -9,21 +9,18 @@
  nix-update-script,
}:

let
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "git-igitt";
  version = "0.1.18";
in
rustPlatform.buildRustPackage {
  inherit pname version;
  version = "0.1.19";

  src = fetchFromGitHub {
    owner = "mlange-42";
    repo = "git-igitt";
    rev = version;
    hash = "sha256-JXEWnekL9Mtw0S3rI5aeO1HB9kJ7bRJDJ6EJ4ATlFeQ=";
    rev = "v${finalAttrs.version}";
    hash = "sha256-kryC07G/sMMtz1v6EZPYdCunl/CjC4H+jAV3Y91X9Cg=";
  };

  cargoHash = "sha256-ndxxkYMFHAX6uourCyUpvJYcZCXQ5X2CMX4jTJmNRiQ=";
  cargoHash = "sha256-45ME5Uaqa6qKuqvO1ETEVrySiAylPmx30uShQPPGNmY=";

  nativeBuildInputs = [ pkg-config ];

@@ -47,4 +44,4 @@ rustPlatform.buildRustPackage {
    maintainers = [ lib.maintainers.pinage404 ];
    mainProgram = "git-igitt";
  };
}
})