mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
watchexec: init at 1.8.6
This commit is contained in:
parent
327a84749e
commit
64bfe643f6
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/misc/watchexec/default.nix
Normal file
25
pkgs/tools/misc/watchexec/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, lib, rustPlatform, fetchFromGitHub }:
|
||||
|
||||
with rustPlatform;
|
||||
|
||||
buildRustPackage rec {
|
||||
name = "watchexec-${version}";
|
||||
version = "1.8.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mattgreen";
|
||||
repo = "watchexec";
|
||||
rev = "${version}";
|
||||
sha256 = "1jib51dbr6s1iq21inm2xfsjnz1730nyd3af1x977iqivmwdisax";
|
||||
};
|
||||
|
||||
cargoSha256 = "0sm1jvx1y18h7y66ilphsqmkbdxc76xly8y7kxmqwdi4lw54i9vl";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Executes commands in response to file modifications";
|
||||
homepage = https://github.com/mattgreen/watchexec;
|
||||
license = with licenses; [ asl20 ];
|
||||
maintainers = [ maintainers.michalrus ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
|
@ -5185,6 +5185,8 @@ with pkgs;
|
|||
|
||||
wal_e = callPackage ../tools/backup/wal-e { };
|
||||
|
||||
watchexec = callPackage ../tools/misc/watchexec { };
|
||||
|
||||
watchman = callPackage ../development/tools/watchman { };
|
||||
|
||||
wavefunctioncollapse = callPackage ../tools/graphics/wavefunctioncollapse {};
|
||||
|
|
Loading…
Reference in a new issue