mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
28 lines
849 B
Nix
28 lines
849 B
Nix
|
{ lib, ncurses5, fetchFromGitHub, rustPlatform }:
|
||
|
|
||
|
rustPlatform.buildRustPackage rec {
|
||
|
pname = "git-interactive-rebase-tool";
|
||
|
version = "1.2.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "MitMaro";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "10z3di2qypgsmg2z7xfs9nlrf9vng5i7l8dvqadv1l4lb9zz7i8q";
|
||
|
};
|
||
|
|
||
|
patches = [ ./01-terminaltests.patch ];
|
||
|
|
||
|
cargoSha256 = "002kr52vlpv1rhnxki29xflpmgk6bszrw0dsxcc34kyal0593ajk";
|
||
|
|
||
|
buildInputs = [ ncurses5 ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://github.com/MitMaro/git-interactive-rebase-tool";
|
||
|
description = "Native cross platform full feature terminal based sequence editor for git interactive rebase";
|
||
|
changelog = "https://github.com/MitMaro/git-interactive-rebase-tool/releases/tag/${version}";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ masaeedu ];
|
||
|
};
|
||
|
}
|