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