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

33 lines
936 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";
2019-11-19 09:20:00 +00:00
version = "1.12.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;
2019-11-19 09:20:00 +00:00
sha256 = "03s9nsss4895x4lp90y65jajavk8c2nj1jjnmx0vbbwl210ghlv1";
2018-02-18 11:46:24 +00:00
};
2019-11-19 09:20:00 +00:00
cargoSha256 = "07whi9w51ddh8s7v06c3k6n5q9gfx74rdkhgfysi180y2rgnbanj";
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";
2018-08-21 11:00:11 +01:00
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
};
}