biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / version-management / bitbucket-server-cli / default.nix
blob6c38250c2753ac429fff896e60d0a53fe20ec62c
1 { lib, bundlerEnv, ruby, bundlerUpdateScript }:
3 bundlerEnv rec {
4   name = "bitbucket-server-cli-${version}";
6   version = (import ./gemset.nix).atlassian-stash.version;
7   inherit ruby;
8   gemdir = ./.;
10   pname = "atlassian-stash";
12   passthru.updateScript = bundlerUpdateScript "bitbucket-server-cli";
14   meta = with lib; {
15     description = "Command line interface to interact with BitBucket Server (formerly Atlassian Stash)";
16     homepage    = "https://bitbucket.org/atlassian/bitbucket-server-cli";
17     license     = licenses.mit;
18     maintainers = with maintainers; [ jgertm nicknovitski ];
19     mainProgram = "stash";
20     platforms   = platforms.unix;
21   };