Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 21 lines 461 B view raw
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5}: 6 7bundlerApp { 8 pname = "gitlab-triage"; 9 gemdir = ./.; 10 exes = [ "gitlab-triage" ]; 11 12 passthru.updateScript = bundlerUpdateScript "gitlab-triage"; 13 14 meta = with lib; { 15 description = "GitLab's issues and merge requests triage, automated"; 16 homepage = "https://gitlab.com/gitlab-org/ruby/gems/gitlab-triage"; 17 license = licenses.mit; 18 maintainers = [ ]; 19 mainProgram = "gitlab-triage"; 20 }; 21}