mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
parent
a5a963c1a2
commit
bceb563011
51
pkgs/by-name/gi/git-smash/package.nix
Normal file
51
pkgs/by-name/gi/git-smash/package.nix
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
fetchFromGitHub,
|
||||||
|
rustPlatform,
|
||||||
|
installShellFiles,
|
||||||
|
makeWrapper,
|
||||||
|
fzf,
|
||||||
|
stdenv,
|
||||||
|
nix-update-script,
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "git-smash";
|
||||||
|
version = "0.1.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "anthraxx";
|
||||||
|
repo = "git-smash";
|
||||||
|
rev = "refs/tags/v${version}";
|
||||||
|
hash = "sha256-NyNYEF5g0O9xNhq+CoDPhQXZ+ISiY4DsShpjk5nP0N8=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-omITZMBWzYlHHim/IXNa1rtiwHqpgLJ5G9z15YvDRi0=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
installShellFiles
|
||||||
|
makeWrapper
|
||||||
|
];
|
||||||
|
|
||||||
|
postFixup = ''
|
||||||
|
wrapProgram "$out/bin/git-smash" --suffix PATH : "${lib.makeBinPath [ fzf ]}"
|
||||||
|
'';
|
||||||
|
|
||||||
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
||||||
|
installShellCompletion --cmd git-smash \
|
||||||
|
--bash <($out/bin/git-smash completions bash) \
|
||||||
|
--fish <($out/bin/git-smash completions fish) \
|
||||||
|
--zsh <($out/bin/git-smash completions zsh)
|
||||||
|
'';
|
||||||
|
|
||||||
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Smash staged changes into previous commits to support your Git workflow, pull request and feature branch maintenance";
|
||||||
|
homepage = "https://github.com/anthraxx/git-smash";
|
||||||
|
changelog = "https://github.com/anthraxx/git-smash/blob/${src.rev}/CHANGELOG.md";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
mainProgram = "git-smash";
|
||||||
|
maintainers = with lib.maintainers; [ bcyran ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user