nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, bundlerApp }:
2
3bundlerApp {
4 pname = "danger-gitlab";
5 gemdir = ./.;
6 exes = [ "danger" ];
7
8 meta = with lib; {
9 description = "Gem that exists to ensure all dependencies are set up for Danger with GitLab";
10 homepage = "https://github.com/danger/danger-gitlab-gem";
11 license = licenses.mit;
12 teams = [ teams.serokell ];
13 mainProgram = "danger";
14 };
15}