Merge pull request #329663 from 7c6f434c/golly-fix-build

golly: fix build by supplying Python setuptools
This commit is contained in:
7c6f434c 2024-07-24 15:53:47 +00:00 committed by GitHub
commit 3d3f95dde8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,6 +12,10 @@ stdenv.mkDerivation rec {
wxGTK perl python3 zlib libGLU libGL libX11 SDL2
];
nativeBuildInputs = [
(python3.withPackages (ps: [ps.setuptools]))
];
setSourceRoot = ''
sourceRoot=$(echo */gui-wx)
'';