mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 12:07:47 +03:00
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ lib, fetchFromGitHub, rustPlatform, testers, hwatch, installShellFiles }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "hwatch";
|
|
version = "0.3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "blacknon";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-RvsL6OajXwEY77W3Wj6GMijYwn7XDnKiJyDXbNG01ag=";
|
|
};
|
|
|
|
cargoHash = "sha256-v7MvXnc9Xa+6QAyi2N9/WtqnvXf9M1SlR86kNjfu46Y=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd hwatch \
|
|
--bash $src/completion/bash/hwatch-completion.bash \
|
|
--fish $src/completion/fish/hwatch.fish \
|
|
--zsh $src/completion/zsh/_hwatch \
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = hwatch;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/blacknon/hwatch";
|
|
description = "Modern alternative to the watch command";
|
|
longDescription = ''
|
|
A modern alternative to the watch command, records the differences in
|
|
execution results and can check this differences at after.
|
|
'';
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ hamburger1984 ];
|
|
};
|
|
}
|