mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{ lib, fetchFromGitHub, rustPlatform, testers, hwatch, installShellFiles }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "hwatch";
|
|
version = "0.3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "blacknon";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-O+qKVRPDn7y8JEAF75P6suH4hOfPLjWSNTDGX2V5z3w=";
|
|
};
|
|
|
|
cargoHash = "sha256-Bzg9EfVVSTKVb4nUfJ0Bygd5dRUutk+5MxojYjcJs0M=";
|
|
|
|
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;
|
|
command = "hwatch --version";
|
|
version = version;
|
|
};
|
|
|
|
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 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|