Merge branch 's3cmd-git' of git://github.com/fmapfmapfmap/nixpkgs

Shea Levy fec288f4 219e9925

+22
+19
pkgs/tools/networking/s3cmd/git.nix
···
··· 1 + { stdenv, fetchgit, pythonPackages }: 2 + 3 + pythonPackages.buildPythonPackage rec { 4 + name = "s3cmd-1.5-pre-81e3842f7a"; 5 + 6 + src = fetchgit { 7 + url = "https://github.com/s3tools/s3cmd.git"; 8 + rev = "81e3842f7afbc8c629f408f4d7dc22058f7bd536"; 9 + sha256 = "13jqw19ws5my8r856j1p7xydwpyp8agnzxkjv6pa7h72wl7rz90i"; 10 + }; 11 + 12 + propagatedBuildInputs = with pythonPackages; [ dateutil ]; 13 + 14 + meta = with stdenv.lib; { 15 + description = "Command line tool for managing Amazon S3 and CloudFront services"; 16 + homepage = http://s3tools.org/s3cmd; 17 + license = licenses.gpl2; 18 + }; 19 + }
+2
pkgs/top-level/all-packages.nix
··· 1966 1967 s3cmd = callPackage ../tools/networking/s3cmd { }; 1968 1969 s3sync = callPackage ../tools/networking/s3sync { 1970 ruby = ruby18; 1971 };
··· 1966 1967 s3cmd = callPackage ../tools/networking/s3cmd { }; 1968 1969 + s3cmd_15_pre_81e3842f7a = lowPrio (callPackage ../tools/networking/s3cmd/git.nix { }); 1970 + 1971 s3sync = callPackage ../tools/networking/s3sync { 1972 ruby = ruby18; 1973 };
+1
pkgs/top-level/release-python.nix
··· 1521 rxvt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1522 rxvt_unicode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1523 s3cmd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1524 sabnzbd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1525 sakura = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1526 salut_a_toi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };
··· 1521 rxvt = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1522 rxvt_unicode = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1523 s3cmd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1524 + s3cmd_git = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1525 sabnzbd = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1526 sakura = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; }; 1527 salut_a_toi = { type = "job"; systems = ["x86_64-linux"]; schedulingPriority = 4; };