My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/misc/travis/default.nix

16 lines
417 B

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