watchexec: 1.8.6 -> 1.9.0 (#45426)

authored by Vladyslav M and committed by xeji 3ec19b17 78c8520c

+8 -10
+8 -10
pkgs/tools/misc/watchexec/default.nix
··· 1 1 { stdenv, rustPlatform, fetchFromGitHub }: 2 2 3 - with rustPlatform; 4 - 5 - buildRustPackage rec { 3 + rustPlatform.buildRustPackage rec { 6 4 name = "watchexec-${version}"; 7 - version = "1.8.6"; 5 + version = "1.9.0"; 8 6 9 7 src = fetchFromGitHub { 10 - owner = "mattgreen"; 8 + owner = "watchexec"; 11 9 repo = "watchexec"; 12 - rev = "${version}"; 13 - sha256 = "1jib51dbr6s1iq21inm2xfsjnz1730nyd3af1x977iqivmwdisax"; 10 + rev = version; 11 + sha256 = "0zp5s2dy5zbar0virvy1izjpvvgwbz7rvjmcy6bph6rb5c4bhm70"; 14 12 }; 15 13 16 - cargoSha256 = "0sm1jvx1y18h7y66ilphsqmkbdxc76xly8y7kxmqwdi4lw54i9vl"; 14 + cargoSha256 = "1li84kq9myaw0zwx69y72f3lx01s7i9p8yays4rwvl1ymr614y1l"; 17 15 18 16 meta = with stdenv.lib; { 19 17 description = "Executes commands in response to file modifications"; 20 - homepage = https://github.com/mattgreen/watchexec; 18 + homepage = https://github.com/watchexec/watchexec; 21 19 license = with licenses; [ asl20 ]; 22 20 maintainers = [ maintainers.michalrus ]; 23 - platforms = [ "x86_64-linux" ]; 21 + platforms = platforms.linux; 24 22 }; 25 23 }