Commit 7f657319 authored by José Romildo's avatar José Romildo
Browse files

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

parent cfa53665
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, python39 }:
{ lib, stdenv, fetchFromGitHub, python3 }:

stdenv.mkDerivation {
  pname = "monoid";
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
  };

  nativeBuildInputs = [
    (python39.withPackages (pp: with pp; [
    (python3.withPackages (pp: with pp; [
      fontforge
    ]))
  ];