nixpkgs/pkgs/tools/misc/docker-sync/default.nix

21 lines
497 B
Nix
Raw Normal View History

{ lib, ruby, bundlerApp, bundlerUpdateScript }:
2019-01-08 10:52:30 +00:00
bundlerApp {
pname = "docker-sync";
gemdir = ./.;
inherit ruby;
exes = ["docker-sync"];
passthru.updateScript = bundlerUpdateScript "docker-sync";
2019-01-08 10:52:30 +00:00
meta = with lib; {
description = "Run your application at full speed while syncing your code for development";
homepage = "http://docker-sync.io";
2019-01-08 10:52:30 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ manveru nicknovitski ];
2019-01-08 10:52:30 +00:00
platforms = platforms.unix;
};
}