mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
Merge pull request #231909 from figsoda/coercer
coercer: fix build on darwin
This commit is contained in:
commit
61f087d285
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user