2019-07-22 05:02:47 -07:00
|
|
|
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
|
2017-01-05 02:21:06 -08:00
|
|
|
|
|
|
|
bundlerEnv rec {
|
|
|
|
name = "bitbucket-server-cli-${version}";
|
|
|
|
|
2017-01-17 15:31:47 -08:00
|
|
|
version = (import ./gemset.nix).atlassian-stash.version;
|
2017-01-05 02:21:06 -08:00
|
|
|
inherit ruby;
|
2017-01-17 15:31:47 -08:00
|
|
|
gemdir = ./.;
|
2017-01-05 02:21:06 -08:00
|
|
|
|
|
|
|
pname = "atlassian-stash";
|
|
|
|
|
2019-07-22 05:02:47 -07:00
|
|
|
passthru.updateScript = bundlerUpdateScript "gitAndTools.bitbucket-server-cli";
|
|
|
|
|
2017-01-05 02:21:06 -08:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A command line interface to interact with BitBucket Server (formerly Atlassian Stash)";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://bitbucket.org/atlassian/bitbucket-server-cli";
|
2017-01-05 02:21:06 -08:00
|
|
|
license = licenses.mit;
|
2019-07-22 05:02:47 -07:00
|
|
|
maintainers = with maintainers; [ jgertm nicknovitski ];
|
2017-01-05 02:21:06 -08:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|