Skip to content

Commit

Permalink
sewer: Fix build
Browse files Browse the repository at this point in the history
The sed expression actually caused an error on hydra:
```
sed: -e expression #1, char 18: Invalid collation character
```
It seems to build fine without it however.
  • Loading branch information
knedlsepp committed Mar 6, 2019
1 parent b1f767e commit 19fc5cb
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions pkgs/tools/admin/sewer/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ python3Packages.buildPythonApplication rec {

propagatedBuildInputs = with python3Packages; [ pyopenssl requests tldextract ];

postPatch = ''
# The README has non-ascii characters which makes setup.py crash.
sed -i 's/[\d128-\d255]//g' README.md
'';

meta = with stdenv.lib; {
homepage = https://github.com/komuw/sewer;
description = "ACME client";
Expand Down

0 comments on commit 19fc5cb

Please sign in to comment.