summary refs log tree commit diff
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-27 15:39:27 -0800
committerRobin Gloster <mail@glob.in>2018-03-01 15:32:14 +0100
commit8a10de3749cedc960dee9cdba088193f70f7e771 (patch)
tree8861b5d018df9c924cf0a2193a29b273a25a84b2
parent5e5e38f564b8caedc3abf7285c6d66d88b7b1586 (diff)
downloadnixpkgs-8a10de3749cedc960dee9cdba088193f70f7e771.tar
nixpkgs-8a10de3749cedc960dee9cdba088193f70f7e771.tar.gz
nixpkgs-8a10de3749cedc960dee9cdba088193f70f7e771.tar.bz2
nixpkgs-8a10de3749cedc960dee9cdba088193f70f7e771.tar.lz
nixpkgs-8a10de3749cedc960dee9cdba088193f70f7e771.tar.xz
nixpkgs-8a10de3749cedc960dee9cdba088193f70f7e771.tar.zst
nixpkgs-8a10de3749cedc960dee9cdba088193f70f7e771.zip
s3cmd: 1.6.1 -> 2.0.1
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/pfd3ki3ylyx10vjkg99wjzhjs004iwb9-s3cmd-2.0.1/bin/.s3cmd-wrapped -h` got 0 exit code
- ran `/nix/store/pfd3ki3ylyx10vjkg99wjzhjs004iwb9-s3cmd-2.0.1/bin/.s3cmd-wrapped --help` got 0 exit code
- ran `/nix/store/pfd3ki3ylyx10vjkg99wjzhjs004iwb9-s3cmd-2.0.1/bin/.s3cmd-wrapped --version` and found version 2.0.1
- ran `/nix/store/pfd3ki3ylyx10vjkg99wjzhjs004iwb9-s3cmd-2.0.1/bin/.s3cmd-wrapped -h` and found version 2.0.1
- ran `/nix/store/pfd3ki3ylyx10vjkg99wjzhjs004iwb9-s3cmd-2.0.1/bin/.s3cmd-wrapped --help` and found version 2.0.1
- ran `/nix/store/pfd3ki3ylyx10vjkg99wjzhjs004iwb9-s3cmd-2.0.1/bin/s3cmd -h` got 0 exit code
- ran `/nix/store/pfd3ki3ylyx10vjkg99wjzhjs004iwb9-s3cmd-2.0.1/bin/s3cmd --help` got 0 exit code
- ran `/nix/store/pfd3ki3ylyx10vjkg99wjzhjs004iwb9-s3cmd-2.0.1/bin/s3cmd --version` and found version 2.0.1
- ran `/nix/store/pfd3ki3ylyx10vjkg99wjzhjs004iwb9-s3cmd-2.0.1/bin/s3cmd -h` and found version 2.0.1
- ran `/nix/store/pfd3ki3ylyx10vjkg99wjzhjs004iwb9-s3cmd-2.0.1/bin/s3cmd --help` and found version 2.0.1
- found 2.0.1 with grep in /nix/store/pfd3ki3ylyx10vjkg99wjzhjs004iwb9-s3cmd-2.0.1
- found 2.0.1 in filename of file in /nix/store/pfd3ki3ylyx10vjkg99wjzhjs004iwb9-s3cmd-2.0.1

cc "@spwhitt"
-rw-r--r--pkgs/tools/networking/s3cmd/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/s3cmd/default.nix b/pkgs/tools/networking/s3cmd/default.nix
index 887cd09b6eb..c3d60d8e87b 100644
--- a/pkgs/tools/networking/s3cmd/default.nix
+++ b/pkgs/tools/networking/s3cmd/default.nix
@@ -2,13 +2,13 @@
 
 python2Packages.buildPythonApplication rec {
   name = "s3cmd-${version}";
-  version = "1.6.1";
+  version = "2.0.1";
   
   src = fetchFromGitHub {
     owner  = "s3tools";
     repo   = "s3cmd";
     rev    = "v${version}";
-    sha256 = "0aan6v1qj0pdkddhhkbaky44d54irm1pa8mkn52i2j86nb2rkcf9";
+    sha256 = "198hzzplci57sb8hdan30nbakslawmijfw0j71wjvq85n3xn6qsl";
   };
 
   propagatedBuildInputs = with python2Packages; [ python_magic dateutil ];