Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 18 lines 393 B view raw
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}