anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / tools / misc / docker-sync / default.nix
blobaa129c0a36dbd697993227cf9a075a75c492d2ee
1 { lib, ruby, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "docker-sync";
5   gemdir = ./.;
7   inherit ruby;
9   exes = ["docker-sync"];
11   passthru.updateScript = bundlerUpdateScript "docker-sync";
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     mainProgram = "docker-sync";
20   };