nixpkgs/pkgs/tools/misc/watchexec/default.nix

26 lines
751 B
Nix
Raw Normal View History

{ stdenv, rustPlatform, fetchFromGitHub, CoreServices, darwin }:
2018-02-18 11:46:24 +00:00
2018-08-21 11:00:11 +01:00
rustPlatform.buildRustPackage rec {
2019-05-29 08:36:29 +01:00
pname = "watchexec";
version = "1.10.3";
2018-02-18 11:46:24 +00:00
src = fetchFromGitHub {
2019-05-29 08:36:29 +01:00
owner = pname;
repo = pname;
2018-08-21 11:00:11 +01:00
rev = version;
sha256 = "0iaxicghvfy85hrxn151hz8frgfknk3s1z0ngjn7cv5x5zvfxspf";
2018-02-18 11:46:24 +00:00
};
2019-05-29 08:36:29 +01:00
cargoSha256 = "1sqwplvpg0n9j0h9j94m7a6ylgqi4y4wyx489y09z9gm7aqgrsjc";
2018-02-18 11:46:24 +00:00
2019-06-20 17:36:11 +01:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];
2018-10-27 17:32:39 +01:00
2018-02-18 11:46:24 +00:00
meta = with stdenv.lib; {
description = "Executes commands in response to file modifications";
2018-08-21 11:00:11 +01:00
homepage = https://github.com/watchexec/watchexec;
2018-02-18 11:46:24 +00:00
license = with licenses; [ asl20 ];
maintainers = [ maintainers.michalrus ];
2018-10-27 17:32:39 +01:00
platforms = platforms.linux ++ platforms.darwin;
2018-02-18 11:46:24 +00:00
};
}