bitbucket-server-cli: init at 0.7.0 (#21616)


authored by jgertm and committed by zimbatm.tngl.sh 52a7b654 2b44ec2e

+119
+1
lib/maintainers.nix
··· 214 jerith666 = "Matt McHenry <github@matt.mchenryfamily.org>"; 215 jfb = "James Felix Black <james@yamtime.com>"; 216 jgeerds = "Jascha Geerds <jascha@jgeerds.name>"; 217 jgillich = "Jakob Gillich <jakob@gillich.me>"; 218 jirkamarsik = "Jirka Marsik <jiri.marsik89@gmail.com>"; 219 joachifm = "Joachim Fasting <joachifm@fastmail.fm>";
··· 214 jerith666 = "Matt McHenry <github@matt.mchenryfamily.org>"; 215 jfb = "James Felix Black <james@yamtime.com>"; 216 jgeerds = "Jascha Geerds <jascha@jgeerds.name>"; 217 + jgertm = "Tim Jaeger <jger.tm@gmail.com>"; 218 jgillich = "Jakob Gillich <jakob@gillich.me>"; 219 jirkamarsik = "Jirka Marsik <jiri.marsik89@gmail.com>"; 220 joachifm = "Joachim Fasting <joachifm@fastmail.fm>";
+2
pkgs/applications/version-management/git-and-tools/bitbucket-server-cli/Gemfile
···
··· 1 + source 'https://rubygems.org' 2 + gem 'atlassian-stash'
+27
pkgs/applications/version-management/git-and-tools/bitbucket-server-cli/Gemfile.lock
···
··· 1 + GEM 2 + remote: https://rubygems.org/ 3 + specs: 4 + addressable (2.5.0) 5 + public_suffix (~> 2.0, >= 2.0.2) 6 + atlassian-stash (0.7.0) 7 + commander (~> 4.1.2) 8 + git (>= 1.2.5) 9 + json (>= 1.7.5) 10 + launchy (~> 2.4.2) 11 + commander (4.1.6) 12 + highline (~> 1.6.11) 13 + git (1.3.0) 14 + highline (1.6.21) 15 + json (2.0.2) 16 + launchy (2.4.3) 17 + addressable (~> 2.3) 18 + public_suffix (2.0.5) 19 + 20 + PLATFORMS 21 + ruby 22 + 23 + DEPENDENCIES 24 + atlassian-stash 25 + 26 + BUNDLED WITH 27 + 1.13.6
+21
pkgs/applications/version-management/git-and-tools/bitbucket-server-cli/default.nix
···
··· 1 + { lib, bundlerEnv, ruby }: 2 + 3 + bundlerEnv rec { 4 + name = "bitbucket-server-cli-${version}"; 5 + 6 + version = (import gemset).atlassian-stash.version; 7 + inherit ruby; 8 + gemfile = ./Gemfile; 9 + lockfile = ./Gemfile.lock; 10 + gemset = ./gemset.nix; 11 + 12 + pname = "atlassian-stash"; 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 ]; 19 + platforms = platforms.unix; 20 + }; 21 + }
+66
pkgs/applications/version-management/git-and-tools/bitbucket-server-cli/gemset.nix
···
··· 1 + { 2 + addressable = { 3 + source = { 4 + remotes = ["https://rubygems.org"]; 5 + sha256 = "1j5r0anj8m4qlf2psnldip4b8ha2bsscv11lpdgnfh4nnchzjnxw"; 6 + type = "gem"; 7 + }; 8 + version = "2.5.0"; 9 + }; 10 + atlassian-stash = { 11 + source = { 12 + remotes = ["https://rubygems.org"]; 13 + sha256 = "1rsf9h5w5wiglwv0fqwp45fq06fxbg68cqkc3bpqvps1i1qm0p6i"; 14 + type = "gem"; 15 + }; 16 + version = "0.7.0"; 17 + }; 18 + commander = { 19 + source = { 20 + remotes = ["https://rubygems.org"]; 21 + sha256 = "0x9i8hf083wjlgj09nl1p9j8sr5g7amq0fdmxjqs4cxdbg3wpmsb"; 22 + type = "gem"; 23 + }; 24 + version = "4.1.6"; 25 + }; 26 + git = { 27 + source = { 28 + remotes = ["https://rubygems.org"]; 29 + sha256 = "1waikaggw7a1d24nw0sh8fd419gbf7awh000qhsf411valycj6q3"; 30 + type = "gem"; 31 + }; 32 + version = "1.3.0"; 33 + }; 34 + highline = { 35 + source = { 36 + remotes = ["https://rubygems.org"]; 37 + sha256 = "06bml1fjsnrhd956wqq5k3w8cyd09rv1vixdpa3zzkl6xs72jdn1"; 38 + type = "gem"; 39 + }; 40 + version = "1.6.21"; 41 + }; 42 + json = { 43 + source = { 44 + remotes = ["https://rubygems.org"]; 45 + sha256 = "1lhinj9vj7mw59jqid0bjn2hlfcnq02bnvsx9iv81nl2han603s0"; 46 + type = "gem"; 47 + }; 48 + version = "2.0.2"; 49 + }; 50 + launchy = { 51 + source = { 52 + remotes = ["https://rubygems.org"]; 53 + sha256 = "190lfbiy1vwxhbgn4nl4dcbzxvm049jwc158r2x7kq3g5khjrxa2"; 54 + type = "gem"; 55 + }; 56 + version = "2.4.3"; 57 + }; 58 + public_suffix = { 59 + source = { 60 + remotes = ["https://rubygems.org"]; 61 + sha256 = "040jf98jpp6w140ghkhw2hvc1qx41zvywx5gj7r2ylr1148qnj7q"; 62 + type = "gem"; 63 + }; 64 + version = "2.0.5"; 65 + }; 66 + }
+2
pkgs/applications/version-management/git-and-tools/default.nix
··· 22 rec { 23 # Try to keep this generally alphabetized 24 25 darcsToGit = callPackage ./darcs-to-git { }; 26 27 diff-so-fancy = callPackage ./diff-so-fancy { };
··· 22 rec { 23 # Try to keep this generally alphabetized 24 25 + bitbucket-server-cli = callPackage ./bitbucket-server-cli { }; 26 + 27 darcsToGit = callPackage ./darcs-to-git { }; 28 29 diff-so-fancy = callPackage ./diff-so-fancy { };