17 rustPlatform.buildRustPackage {
18 pname = "git-instafix";
21 src = fetchFromGitHub {
22 owner = "quodlibetor";
23 repo = "git-instafix";
25 hash = "sha256-Uz+KQ8cQT3v97EtmbAv2II30dUrFD0hMo/GhnqcdBOs=";
28 cargoHash = "sha256-12UkZyyu4KH3dcCadr8UhK8DTtVjcsjYzt7kiNLpUqU=";
30 buildInputs = [ libgit2 ];
31 nativeCheckInputs = [ git ];
34 description = "Quickly fix up an old commit using your currently-staged changes";
35 mainProgram = "git-instafix";
36 homepage = "https://github.com/quodlibetor/git-instafix";
37 license = with licenses; [ mit asl20 ];
38 maintainers = with maintainers; [ mightyiam quodlibetor ];
39 changelog = "https://github.com/quodlibetor/git-instafix/releases/tag/v${version}";
40 broken = stdenv.hostPlatform.isDarwin;