Merge pull request #231909 from figsoda/coercer

coercer: fix build on darwin
This commit is contained in:
Robert Scott 2023-05-15 00:31:14 +01:00 committed by GitHub
commit 61f087d285
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,6 +27,12 @@ python3.pkgs.buildPythonApplication rec {
"coercer" "coercer"
]; ];
# this file runs into issues on case-insensitive filesystems
# ValueError: Both <...>/coercer and <...>/coercer.py exist
postPatch = ''
rm Coercer.py
'';
meta = with lib; { meta = with lib; {
description = "Tool to automatically coerce a Windows server"; description = "Tool to automatically coerce a Windows server";
homepage = "https://github.com/p0dalirius/Coercer"; homepage = "https://github.com/p0dalirius/Coercer";