22 lines
588 B
Nix

{ 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;
};
}