bitbucket-server-cli: init at 0.7.0 (#21616)

This commit is contained in:
jgertm
2017-01-05 10:21:06 +00:00
committed by zimbatm
parent 2b44ec2e13
commit 52a7b6549f
6 changed files with 119 additions and 0 deletions
@@ -0,0 +1,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;
};
}