monoid: do not use python39, as fontforge is not available for it

This commit is contained in:
José Romildo 2024-07-18 21:02:10 -03:00
parent cfa5366588
commit 7f657319c4

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, python39 }: { lib, stdenv, fetchFromGitHub, python3 }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "monoid"; pname = "monoid";
@ -12,7 +12,7 @@ stdenv.mkDerivation {
}; };
nativeBuildInputs = [ nativeBuildInputs = [
(python39.withPackages (pp: with pp; [ (python3.withPackages (pp: with pp; [
fontforge fontforge
])) ]))
]; ];