summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-and-tools/bitbucket-server-cli/default.nix
blob: a3cf434360b933afaf8a37486639711c47b49895 (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 }:

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

  version = (import gemset).atlassian-stash.version;
  inherit ruby;
  gemfile = ./Gemfile;
  lockfile = ./Gemfile.lock;
  gemset = ./gemset.nix;

  pname = "atlassian-stash";

  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 ];
    platforms   = platforms.unix;
  };
}