Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5}: 6 7bundlerApp { 8 pname = "drake"; 9 gemdir = ./.; 10 exes = [ "drake" ]; 11 12 passthru.updateScript = bundlerUpdateScript "drake"; 13 14 meta = with lib; { 15 description = "Branch of Rake supporting automatic parallelizing of tasks"; 16 homepage = "http://quix.github.io/rake/"; 17 maintainers = with maintainers; [ 18 romildo 19 manveru 20 nicknovitski 21 ]; 22 license = licenses.mit; 23 platforms = platforms.unix; 24 }; 25}