1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/version-management/git-and-tools/bitbucket-server-cli/default.nix

20 lines
533 B
Nix
Raw Normal View History

{ lib, bundlerEnv, ruby }:
bundlerEnv rec {
name = "bitbucket-server-cli-${version}";
2017-01-17 23:31:47 +00:00
version = (import ./gemset.nix).atlassian-stash.version;
inherit ruby;
2017-01-17 23:31:47 +00:00
gemdir = ./.;
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;
};
}