mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
23 lines
665 B
Nix
23 lines
665 B
Nix
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
|
|
|
|
bundlerEnv rec {
|
|
name = "bitbucket-server-cli-${version}";
|
|
|
|
version = (import ./gemset.nix).atlassian-stash.version;
|
|
inherit ruby;
|
|
gemdir = ./.;
|
|
|
|
pname = "atlassian-stash";
|
|
|
|
passthru.updateScript = bundlerUpdateScript "bitbucket-server-cli";
|
|
|
|
meta = with lib; {
|
|
description = "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 nicknovitski ];
|
|
mainProgram = "stash";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|