nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 20 lines 432 B view raw
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5}: 6 7bundlerApp { 8 pname = "danger-gitlab"; 9 gemdir = ./.; 10 exes = [ "danger" ]; 11 12 passthru.updateScript = bundlerUpdateScript "danger-gitlab"; 13 14 meta = { 15 description = "Gem that exists to ensure all dependencies are set up for Danger with GitLab"; 16 homepage = "https://github.com/danger/danger-gitlab-gem"; 17 license = lib.licenses.mit; 18 mainProgram = "danger"; 19 }; 20}