mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-20 15:41:16 +00:00
jetbrains-mono: use python 3.13 gftools to fix build
'fs' is unsupported on Python 3.14 which breaks 'gftools' on 3.14.
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
lib,
|
||||
stdenvNoCC,
|
||||
fetchFromGitHub,
|
||||
python3Packages,
|
||||
python313Packages,
|
||||
}:
|
||||
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
@@ -19,7 +19,8 @@ stdenvNoCC.mkDerivation rec {
|
||||
env."PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION" = "python";
|
||||
|
||||
nativeBuildInputs = [
|
||||
python3Packages.gftools
|
||||
# Currently broken on 3.14
|
||||
python313Packages.gftools
|
||||
];
|
||||
|
||||
buildPhase = ''
|
||||
|
||||
Reference in New Issue
Block a user