nixpkgs/pkgs/tools/misc/watchexec/default.nix

33 lines
938 B
Nix
Raw Normal View History

2019-11-19 09:20:00 +00:00
{ stdenv, rustPlatform, fetchFromGitHub, CoreServices, installShellFiles }:
2018-02-18 11:46:24 +00:00
2018-08-21 11:00:11 +01:00
rustPlatform.buildRustPackage rec {
2019-05-29 08:36:29 +01:00
pname = "watchexec";
2020-07-04 12:56:16 +01:00
version = "1.14.0";
2018-02-18 11:46:24 +00:00
src = fetchFromGitHub {
2019-05-29 08:36:29 +01:00
owner = pname;
repo = pname;
2018-08-21 11:00:11 +01:00
rev = version;
2020-07-04 12:56:16 +01:00
sha256 = "0nvd8x60nkk8izqy8m8m1fi0x48s9sjh4zfl8d2ig46lqc8n5cpm";
2018-02-18 11:46:24 +00:00
};
2020-07-04 12:56:16 +01:00
cargoSha256 = "08pv7nr471apzy77da1pffdmx2dgf5mbj09302cfmf8sj49saal6";
2019-11-19 09:20:00 +00:00
nativeBuildInputs = [ installShellFiles ];
2018-02-18 11:46:24 +00:00
2019-06-20 17:36:11 +01:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];
2018-10-27 17:32:39 +01:00
2019-11-19 09:20:00 +00:00
postInstall = ''
installManPage doc/watchexec.1
installShellCompletion --zsh --name _watchexec completions/zsh
'';
2018-02-18 11:46:24 +00:00
meta = with stdenv.lib; {
description = "Executes commands in response to file modifications";
homepage = "https://github.com/watchexec/watchexec";
2018-02-18 11:46:24 +00:00
license = with licenses; [ asl20 ];
maintainers = [ maintainers.michalrus ];
2018-10-27 17:32:39 +01:00
platforms = platforms.linux ++ platforms.darwin;
2018-02-18 11:46:24 +00:00
};
}