Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8d5eb6910150
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 95208ca3505c
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 11, 2020

  1. atlassian-cli: 9.3.0 -> 9.4.0

    r-ryantm authored and zowoq committed Nov 11, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    15c8338 View commit details

Commits on Nov 24, 2020

  1. Merge pull request #101277 from r-ryantm/auto-update/atlassian-cli

    atlassian-cli: 9.3.0 -> 9.4.0
    SuperSandro2000 authored Nov 24, 2020
    Copy the full SHA
    95208ca View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 pkgs/applications/office/atlassian-cli/default.nix
12 changes: 6 additions & 6 deletions pkgs/applications/office/atlassian-cli/default.nix
Original file line number Diff line number Diff line change
@@ -2,14 +2,14 @@

stdenv.mkDerivation rec {
pname = "atlassian-cli";
version = "9.3.0";
version = "9.4.0";

src = fetchzip {
url = "https://bobswift.atlassian.net/wiki/download/attachments/16285777/${pname}-${version}-distribution.zip";
sha256 = "1gsyxkkx04vhp8ii0xbln5h8wa8x3dj6xhh2fyjs4z0bil4hlf06";
sha256 = "091dhjkx7fdn23cj7c4071swncsbmknpvidmmjzhc0355l3p4k2g";
extraPostFetch = "chmod go-w $out";
};

tools = [
"agile"
"bamboo"
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
"trello"
"upm"
];

installPhase = ''
mkdir -p $out/{bin,share/doc/atlassian-cli}
cp -r lib $out/share/java
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
chmod +x $out/bin/$tool
done
'';

meta = with stdenv.lib; {
description = "An integrated family of CLI’s for various Atlassian applications";
homepage = "https://bobswift.atlassian.net/wiki/spaces/ACLI/overview";