Mario Rodas 2019-10-28 03:00:00 -05:00
parent 9d37be21a7
commit 460e2d2f7f
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8
1 changed files with 4 additions and 4 deletions

View File

@ -1,17 +1,17 @@
{ stdenv, rustPlatform, fetchFromGitHub, CoreServices, darwin }: { stdenv, rustPlatform, fetchFromGitHub, CoreServices }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "watchexec"; pname = "watchexec";
version = "1.10.3"; version = "1.11.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = pname; owner = pname;
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "0iaxicghvfy85hrxn151hz8frgfknk3s1z0ngjn7cv5x5zvfxspf"; sha256 = "1iaib7yvxyn3l9kiys9x7wziixj13fmx1z3wgdy6h8c7jv6fpc0j";
}; };
cargoSha256 = "1sqwplvpg0n9j0h9j94m7a6ylgqi4y4wyx489y09z9gm7aqgrsjc"; cargoSha256 = "101p0qj7ydfhqfz402mxy4bs48vq3rzgj513f1kwv0ba4hn1sxkv";
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices ]; buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];