Skip to content

Commit

Permalink
simp_le: apply patch to update TOS hash
Browse files Browse the repository at this point in the history
Fixes NixOS#17455.

Also see kuba/simp_le#114.

(cherry picked from commit e55aa50)
  • Loading branch information
adrianpk committed Aug 9, 2016
1 parent 0d1333f commit 920c3f0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pkgs/tools/admin/simp_le/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, pythonPackages }:
{ stdenv, fetchFromGitHub, fetchpatch, pythonPackages }:

pythonPackages.buildPythonApplication rec {
name = "simp_le-2016-02-06";
Expand All @@ -10,6 +10,13 @@ pythonPackages.buildPythonApplication rec {
sha256 = "1r2c31bhj91n3cjyf01spx52vkqxi5475zzkc9s1aliy3fs3lc4r";
};

patches = [
(fetchpatch {
url = "https://github.com/kuba/simp_le/commit/4bc788fdd611c4118c3f86b5f546779723aca5a7.patch";
sha256 = "0036p11qn3plydv5s5z6i28r6ihy1ipjl0y8la0izpkiq273byfc";
})
];

propagatedBuildInputs = with pythonPackages; [ acme ];

meta = with stdenv.lib; {
Expand Down

0 comments on commit 920c3f0

Please sign in to comment.