nixpkgs/pkgs/tools/misc/watchexec/default.nix
R. RyanTM 7eeec3e501 watchexec: 1.10.2 -> 1.10.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/watchexec/versions
2019-08-06 02:13:36 -07:00

26 lines
751 B
Nix

{ stdenv, rustPlatform, fetchFromGitHub, CoreServices, darwin }:
rustPlatform.buildRustPackage rec {
pname = "watchexec";
version = "1.10.3";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
sha256 = "0iaxicghvfy85hrxn151hz8frgfknk3s1z0ngjn7cv5x5zvfxspf";
};
cargoSha256 = "1sqwplvpg0n9j0h9j94m7a6ylgqi4y4wyx489y09z9gm7aqgrsjc";
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];
meta = with stdenv.lib; {
description = "Executes commands in response to file modifications";
homepage = https://github.com/watchexec/watchexec;
license = with licenses; [ asl20 ];
maintainers = [ maintainers.michalrus ];
platforms = platforms.linux ++ platforms.darwin;
};
}