watchexec: 1.8.6 -> 1.9.0 (#45426)

This commit is contained in:
Vladyslav M 2018-08-21 13:00:11 +03:00 committed by xeji
parent 78c8520c86
commit 3ec19b174f

View file

@ -1,25 +1,23 @@
{ stdenv, rustPlatform, fetchFromGitHub }:
with rustPlatform;
buildRustPackage rec {
rustPlatform.buildRustPackage rec {
name = "watchexec-${version}";
version = "1.8.6";
version = "1.9.0";
src = fetchFromGitHub {
owner = "mattgreen";
owner = "watchexec";
repo = "watchexec";
rev = "${version}";
sha256 = "1jib51dbr6s1iq21inm2xfsjnz1730nyd3af1x977iqivmwdisax";
rev = version;
sha256 = "0zp5s2dy5zbar0virvy1izjpvvgwbz7rvjmcy6bph6rb5c4bhm70";
};
cargoSha256 = "0sm1jvx1y18h7y66ilphsqmkbdxc76xly8y7kxmqwdi4lw54i9vl";
cargoSha256 = "1li84kq9myaw0zwx69y72f3lx01s7i9p8yays4rwvl1ymr614y1l";
meta = with stdenv.lib; {
description = "Executes commands in response to file modifications";
homepage = https://github.com/mattgreen/watchexec;
homepage = https://github.com/watchexec/watchexec;
license = with licenses; [ asl20 ];
maintainers = [ maintainers.michalrus ];
platforms = [ "x86_64-linux" ];
platforms = platforms.linux;
};
}