From 350603ae67615d45d8b59a827db34038e412e8f1 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 14 May 2023 16:31:26 -0400 Subject: [PATCH] coercer: fix build on darwin --- pkgs/tools/security/coercer/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/tools/security/coercer/default.nix b/pkgs/tools/security/coercer/default.nix index 0e48d4ac23d..3d1e6cb4696 100644 --- a/pkgs/tools/security/coercer/default.nix +++ b/pkgs/tools/security/coercer/default.nix @@ -27,6 +27,12 @@ python3.pkgs.buildPythonApplication rec { "coercer" ]; + # this file runs into issues on case-insensitive filesystems + # ValueError: Both <...>/coercer and <...>/coercer.py exist + postPatch = '' + rm Coercer.py + ''; + meta = with lib; { description = "Tool to automatically coerce a Windows server"; homepage = "https://github.com/p0dalirius/Coercer";