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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
530 B
Nix
Raw Normal View History

{ lib, ruby, bundlerApp, bundlerUpdateScript }:
2019-01-08 11:52:30 +01:00
bundlerApp {
pname = "docker-sync";
gemdir = ./.;
inherit ruby;
exes = ["docker-sync"];
passthru.updateScript = bundlerUpdateScript "docker-sync";
2019-01-08 11:52:30 +01: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 11:52:30 +01:00
license = licenses.gpl3;
maintainers = with maintainers; [ manveru nicknovitski ];
2019-01-08 11:52:30 +01:00
platforms = platforms.unix;
2023-11-27 02:17:53 +01:00
mainProgram = "docker-sync";
2019-01-08 11:52:30 +01:00
};
}