Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
461 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
bundlerEnv,
ruby,
bundlerUpdateScript,
}:
bundlerEnv {
inherit ruby;
pname = "travis";
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "travis";
meta = {
description = "CLI and Ruby client library for Travis CI";
mainProgram = "travis";
homepage = "https://github.com/travis-ci/travis.rb";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
zimbatm
nicknovitski
];
};
}