summary refs log tree commit diff
path: root/pkgs/tools/admin
diff options
context:
space:
mode:
authorJosef Kemetmüller <josef.kemetmueller@gmail.com>2019-03-06 21:11:15 +0100
committerJosef Kemetmüller <josef.kemetmueller@gmail.com>2019-03-06 21:11:15 +0100
commit19fc5cb3db9f5f58c7067fe1276fa00157da6a7d (patch)
treeb54dfa77e471dd339bbab87e15b2fce8a448c8cf /pkgs/tools/admin
parentb1f767ef90233fb2157113655a1180e090efdb65 (diff)
downloadnixpkgs-19fc5cb3db9f5f58c7067fe1276fa00157da6a7d.tar
nixpkgs-19fc5cb3db9f5f58c7067fe1276fa00157da6a7d.tar.gz
nixpkgs-19fc5cb3db9f5f58c7067fe1276fa00157da6a7d.tar.bz2
nixpkgs-19fc5cb3db9f5f58c7067fe1276fa00157da6a7d.tar.lz
nixpkgs-19fc5cb3db9f5f58c7067fe1276fa00157da6a7d.tar.xz
nixpkgs-19fc5cb3db9f5f58c7067fe1276fa00157da6a7d.tar.zst
nixpkgs-19fc5cb3db9f5f58c7067fe1276fa00157da6a7d.zip
sewer: Fix build
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.
Diffstat (limited to 'pkgs/tools/admin')
-rw-r--r--pkgs/tools/admin/sewer/default.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkgs/tools/admin/sewer/default.nix b/pkgs/tools/admin/sewer/default.nix
index 5410d0c833d..df6077c4cbf 100644
--- a/pkgs/tools/admin/sewer/default.nix
+++ b/pkgs/tools/admin/sewer/default.nix
@@ -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";