about summary refs log tree commit diff
path: root/pkgs/tools/admin
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-08-03 13:34:44 +0000
committerRobin Gloster <mail@glob.in>2016-08-03 13:34:44 +0000
commit1b979d83845945dabffebff5033cf864b41d5c64 (patch)
tree6e81ba4ab8cd28ad9fc8d9e2a3a298bc5a403042 /pkgs/tools/admin
parent3f9e8601f2a8537de90f04375400538049bbdaf2 (diff)
parentd93f917182dc5da7aca53fb9a847374ec0c7429a (diff)
downloadnixlib-1b979d83845945dabffebff5033cf864b41d5c64.tar
nixlib-1b979d83845945dabffebff5033cf864b41d5c64.tar.gz
nixlib-1b979d83845945dabffebff5033cf864b41d5c64.tar.bz2
nixlib-1b979d83845945dabffebff5033cf864b41d5c64.tar.lz
nixlib-1b979d83845945dabffebff5033cf864b41d5c64.tar.xz
nixlib-1b979d83845945dabffebff5033cf864b41d5c64.tar.zst
nixlib-1b979d83845945dabffebff5033cf864b41d5c64.zip
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
Diffstat (limited to 'pkgs/tools/admin')
-rw-r--r--pkgs/tools/admin/simp_le/default.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkgs/tools/admin/simp_le/default.nix b/pkgs/tools/admin/simp_le/default.nix
index 8925610bebfb..24bfe043b9d7 100644
--- a/pkgs/tools/admin/simp_le/default.nix
+++ b/pkgs/tools/admin/simp_le/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, pythonPackages }:
+{ stdenv, fetchFromGitHub, fetchpatch, pythonPackages }:
 
 pythonPackages.buildPythonApplication rec {
   name = "simp_le-2016-04-17";
@@ -10,6 +10,13 @@ pythonPackages.buildPythonApplication rec {
     sha256 = "0x8gqazn09m30bn1l7xnf8snhbb7yz7sb09imciqmm4jqdvn797z";
   };
 
+  patches = [
+    (fetchpatch {
+      url = "https://github.com/kuba/simp_le/commit/4bc788fdd611c4118c3f86b5f546779723aca5a7.patch";
+      sha256 = "0036p11qn3plydv5s5z6i28r6ihy1ipjl0y8la0izpkiq273byfc";
+    })
+  ];
+
   propagatedBuildInputs = with pythonPackages; [ acme_0_5_0 ];
 
   meta = with stdenv.lib; {