about summary refs log tree commit diff
path: root/pkgs/tools/admin/certbot
diff options
context:
space:
mode:
authorHoang Xuan Phu <phuhimself@phunehehe.net>2016-12-13 19:00:27 +0800
committerJörg Thalheim <joerg@higgsboson.tk>2016-12-21 12:04:56 +0100
commit17322ca4fdc5487b113b2ad4f059e18821937699 (patch)
tree591c067a58572a694a518bee13b877d015f3cc5d /pkgs/tools/admin/certbot
parent52a220aaa0ee59f632d5b186e7b557edff8ea821 (diff)
downloadnixlib-17322ca4fdc5487b113b2ad4f059e18821937699.tar
nixlib-17322ca4fdc5487b113b2ad4f059e18821937699.tar.gz
nixlib-17322ca4fdc5487b113b2ad4f059e18821937699.tar.bz2
nixlib-17322ca4fdc5487b113b2ad4f059e18821937699.tar.lz
nixlib-17322ca4fdc5487b113b2ad4f059e18821937699.tar.xz
nixlib-17322ca4fdc5487b113b2ad4f059e18821937699.tar.zst
nixlib-17322ca4fdc5487b113b2ad4f059e18821937699.zip
certbot: 0.6.0 -> 0.9.3
Diffstat (limited to 'pkgs/tools/admin/certbot')
-rw-r--r--pkgs/tools/admin/certbot/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/admin/certbot/default.nix b/pkgs/tools/admin/certbot/default.nix
index 998b8d2e13de..8ff147faacc4 100644
--- a/pkgs/tools/admin/certbot/default.nix
+++ b/pkgs/tools/admin/certbot/default.nix
@@ -4,13 +4,13 @@
 
 python2Packages.buildPythonApplication rec {
   name = "certbot-${version}";
-  version = "0.6.0";
+  version = "0.9.3";
 
   src = fetchFromGitHub {
     owner = "certbot";
     repo = "certbot";
     rev = "v${version}";
-    sha256 = "1x0prlldkgg0hxmya4m5h3k3c872wr0jylmzpr3m04mk339yiw0c";
+    sha256 = "03yfr8vlq62l0h14qk03flrkbvbv9mc5cf6rmh37naj8jwpl8cic";
   };
 
   propagatedBuildInputs = with python2Packages; [
@@ -32,7 +32,7 @@ python2Packages.buildPythonApplication rec {
 
   patchPhase = ''
     substituteInPlace certbot/notify.py --replace "/usr/sbin/sendmail" "/var/setuid-wrappers/sendmail"
-    substituteInPlace certbot/le_util.py --replace "sw_vers" "/usr/bin/sw_vers"
+    substituteInPlace certbot/util.py --replace "sw_vers" "/usr/bin/sw_vers"
   '';
 
   postInstall = ''