
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
16 lines
388 B
Nix
16 lines
388 B
Nix
{ lib, bundlerApp }:
|
|
|
|
bundlerApp {
|
|
pname = "danger-gitlab";
|
|
gemdir = ./.;
|
|
exes = [ "danger" ];
|
|
|
|
meta = with lib; {
|
|
description = "Gem that exists to ensure all dependencies are set up for Danger with GitLab";
|
|
homepage = "https://github.com/danger/danger-gitlab-gem";
|
|
license = licenses.mit;
|
|
maintainers = teams.serokell.members;
|
|
mainProgram = "danger";
|
|
};
|
|
}
|