summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-and-tools/bitbucket-server-cli/default.nix
blob: 68edb8503bfcc289496d169ddd87da427944064d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:

bundlerEnv rec {
  name = "bitbucket-server-cli-${version}";

  version = (import ./gemset.nix).atlassian-stash.version;
  inherit ruby;
  gemdir = ./.;

  pname = "atlassian-stash";

  passthru.updateScript = bundlerUpdateScript "gitAndTools.bitbucket-server-cli";

  meta = with lib; {
    description = "A command line interface to interact with BitBucket Server (formerly Atlassian Stash)";
    homepage    = "https://bitbucket.org/atlassian/bitbucket-server-cli";
    license     = licenses.mit;
    maintainers = with maintainers; [ jgertm nicknovitski ];
    platforms   = platforms.unix;
  };
}