summary refs log tree commit diff
path: root/pkgs/tools/misc/watchexec/default.nix
blob: b1704c3b46c615968bfcd2d23163ca25208f8abe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, 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" ];
  };
}