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

20 lines
497 B
Nix
Raw Normal View History

2016-10-02 23:42:17 +01:00
{ lib, bundlerEnv, ruby }:
2016-04-04 11:55:48 +01:00
# Maintainer notes for updating
# 1. increment version number in Gemfile
# 2. run $ nix-shell --command "bundler install && bundix"
# in the travis directory in nixpkgs
2016-10-02 23:42:17 +01:00
bundlerEnv {
inherit ruby;
2016-10-14 16:56:42 +01:00
pname = "travis";
2016-10-02 23:42:17 +01:00
gemdir = ./.;
2016-04-04 11:55:48 +01: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 ];
};
}