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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.0 KiB
Nix
Raw Normal View History

2022-07-23 04:20:00 +00:00
{ lib, stdenv, rustPlatform, fetchFromGitHub, Cocoa, AppKit, installShellFiles }:
2018-02-18 11:46:24 +00:00
2018-08-21 10:00:11 +00:00
rustPlatform.buildRustPackage rec {
2019-05-29 07:36:29 +00:00
pname = "watchexec";
version = "1.25.1";
2018-02-18 11:46:24 +00:00
src = fetchFromGitHub {
2019-05-29 07:36:29 +00:00
owner = pname;
repo = pname;
2023-03-15 19:45:13 +00:00
rev = "v${version}";
hash = "sha256-0zBY0PS7qJCAabg9ZKX1JC+gaTM/WSs2U6Avcq3MHmQ=";
2018-02-18 11:46:24 +00:00
};
cargoHash = "sha256-RSJOGiSziI2OJkRJAxPZ57uyPPjd3uExijHdIy52dr4=";
2019-11-19 09:20:00 +00:00
nativeBuildInputs = [ installShellFiles ];
2018-02-18 11:46:24 +00:00
2022-07-23 04:20:00 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ Cocoa AppKit ];
NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-framework AppKit";
2018-10-27 16:32:39 +00:00
checkFlags = [ "--skip=help" "--skip=help_short" ];
2023-03-15 19:45:13 +00:00
postPatch = ''
rm .cargo/config
'';
2019-11-19 09:20:00 +00:00
postInstall = ''
installManPage doc/watchexec.1
installShellCompletion --zsh --name _watchexec completions/zsh
'';
meta = with lib; {
2018-02-18 11:46:24 +00:00
description = "Executes commands in response to file modifications";
2021-10-01 09:20:00 +00:00
homepage = "https://watchexec.github.io/";
2018-02-18 11:46:24 +00:00
license = with licenses; [ asl20 ];
maintainers = [ maintainers.michalrus ];
2023-11-27 01:17:53 +00:00
mainProgram = "watchexec";
2018-02-18 11:46:24 +00:00
};
}