summary refs log tree commit diff
path: root/pkgs/tools/networking/s3cmd
diff options
context:
space:
mode:
authorvi <me@vikramverma.com>2014-06-02 16:08:36 +0800
committervi <me@vikramverma.com>2014-06-02 16:08:36 +0800
commit2c05eb96bccf6a160b9e2b5a473f161ee5a712cb (patch)
treeb270df6a6e594a9f88d7e3a3580c530010d6491e /pkgs/tools/networking/s3cmd
parent2f43cd3793fff581f7931e8b85bf3c92887f3761 (diff)
downloadnixpkgs-2c05eb96bccf6a160b9e2b5a473f161ee5a712cb.tar
nixpkgs-2c05eb96bccf6a160b9e2b5a473f161ee5a712cb.tar.gz
nixpkgs-2c05eb96bccf6a160b9e2b5a473f161ee5a712cb.tar.bz2
nixpkgs-2c05eb96bccf6a160b9e2b5a473f161ee5a712cb.tar.lz
nixpkgs-2c05eb96bccf6a160b9e2b5a473f161ee5a712cb.tar.xz
nixpkgs-2c05eb96bccf6a160b9e2b5a473f161ee5a712cb.tar.zst
nixpkgs-2c05eb96bccf6a160b9e2b5a473f161ee5a712cb.zip
Supplementary derivation for s3cmd, building from git HEAD.
Diffstat (limited to 'pkgs/tools/networking/s3cmd')
-rw-r--r--pkgs/tools/networking/s3cmd/git.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/tools/networking/s3cmd/git.nix b/pkgs/tools/networking/s3cmd/git.nix
new file mode 100644
index 00000000000..b6019c7eda1
--- /dev/null
+++ b/pkgs/tools/networking/s3cmd/git.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchgit, pythonPackages }:
+
+pythonPackages.buildPythonPackage rec {
+  name = "s3cmd_git";
+
+  src  = fetchgit {
+    url    = "https://github.com/s3tools/s3cmd.git";
+    rev    = "81e3842f7afbc8c629f408f4d7dc22058f7bd536";
+    sha256 = "13jqw19ws5my8r856j1p7xydwpyp8agnzxkjv6pa7h72wl7rz90i";
+  };
+
+  propagatedBuildInputs = with pythonPackages; [ dateutil ];
+
+  meta = with stdenv.lib;  {
+    description = "Command line tool for managing Amazon S3 and CloudFront services";
+    homepage    = http://s3tools.org/s3cmd;
+    license     = licenses.gpl2;
+  };
+}