gitAndTools.git-interactive-rebase-tool: 1.2.1 -> 2.0.0

This commit is contained in:
Sandro Jäckel 2021-02-02 13:41:21 +01:00
parent e7130630d9
commit c4f417b6c2
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,21 +1,22 @@
{ lib, stdenv, ncurses5, fetchFromGitHub, rustPlatform, libiconv, Security }:
{ lib, stdenv, fetchFromGitHub, rustPlatform, libiconv, Security }:
rustPlatform.buildRustPackage rec {
pname = "git-interactive-rebase-tool";
version = "1.2.1";
version = "2.0.0";
src = fetchFromGitHub {
owner = "MitMaro";
repo = pname;
rev = version;
sha256 = "10z3di2qypgsmg2z7xfs9nlrf9vng5i7l8dvqadv1l4lb9zz7i8q";
sha256 = "117zwxyq2vc33nbnfpjbdr5vc2l5ymf6ln1dm5551ha3y3gdq3bf";
};
cargoSha256 = "0jc6mhszxmwsdjk73wkfi0jjp9vkzzl9kk0dbnry6w7dyr5if8cc";
cargoSha256 = "051llwk9swq03xdqwyj0hlyv2ywq2f1cnks95nygyy393q7v930x";
buildInputs = [ ncurses5 ] ++ lib.optionals stdenv.isDarwin [ libiconv Security ];
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
cargoParallelTestThreads = false;
# external_editor::tests::* tests fail
doCheck = false;
meta = with lib; {
homepage = "https://github.com/MitMaro/git-interactive-rebase-tool";