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