at 23.11-beta 22 lines 667 B view raw
1{ lib, bundlerEnv, ruby, bundlerUpdateScript }: 2 3bundlerEnv rec { 4 name = "bitbucket-server-cli-${version}"; 5 6 version = (import ./gemset.nix).atlassian-stash.version; 7 inherit ruby; 8 gemdir = ./.; 9 10 pname = "atlassian-stash"; 11 12 passthru.updateScript = bundlerUpdateScript "bitbucket-server-cli"; 13 14 meta = with lib; { 15 description = "A 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 }; 22}