1{ lib, ruby, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "docker-sync";
5 gemdir = ./.;
6
7 inherit ruby;
8
9 exes = ["docker-sync"];
10
11 passthru.updateScript = bundlerUpdateScript "docker-sync";
12
13 meta = with lib; {
14 description = "Run your application at full speed while syncing your code for development";
15 homepage = "http://docker-sync.io";
16 license = licenses.gpl3;
17 maintainers = with maintainers; [ manveru nicknovitski ];
18 platforms = platforms.unix;
19 };
20}