aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/office/atlassian-cli
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-05-23 23:37:33 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-05-25 15:48:05 -0500
commit02297beade7813c6a716e53a5f1373f1123d8753 (patch)
tree6f6f387ca8b053eb5d2ef6f000e7976672d94478 /pkgs/applications/office/atlassian-cli
parentf22a63d533893b88e4b9d61e66291286ffa6ae92 (diff)
treewide: add version to packages
Lots of packages are missing versions in their name. This adds them where appropriate. These were found with this command: $ nix-env -qa -f. | grep -v '\-[0-9A-Za-z.-_+]*$' | grep -v '^hook$' See issue #41007.
Diffstat (limited to 'pkgs/applications/office/atlassian-cli')
-rw-r--r--pkgs/applications/office/atlassian-cli/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/office/atlassian-cli/default.nix b/pkgs/applications/office/atlassian-cli/default.nix
index a56c15bffb2a..15e3d120f20b 100644
--- a/pkgs/applications/office/atlassian-cli/default.nix
+++ b/pkgs/applications/office/atlassian-cli/default.nix
@@ -1,9 +1,9 @@
{ stdenv, fetchzip, jre }:
-stdenv.mkDerivation {
- name = "atlassian-cli";
+stdenv.mkDerivation rec {
+ name = "atlassian-cli-${version}";
version = "7.8.0";
src = fetchzip {
- url = https://bobswift.atlassian.net/wiki/download/attachments/16285777/atlassian-cli-7.8.0-distribution.zip;
+ url = "https://bobswift.atlassian.net/wiki/download/attachments/16285777/${name}-distribution.zip";
sha256 = "111s4d9m6vxq8jwh1d6ar1f4n5zmyjg7gi2vl3aq63kxbfld9vw7";
extraPostFetch = "chmod go-w $out";
};