nixpkgs/pkgs/development/tools/misc/travis/default.nix

15 lines
324 B
Nix
Raw Normal View History

2016-10-02 22:42:17 +00:00
{ lib, bundlerEnv, ruby }:
2016-04-04 10:55:48 +00:00
2016-10-02 22:42:17 +00:00
bundlerEnv {
inherit ruby;
2016-10-14 15:56:42 +00:00
pname = "travis";
2016-10-02 22:42:17 +00:00
gemdir = ./.;
2016-04-04 10:55:48 +00:00
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 ];
};
}