Commit 02fa87d7 authored by Ihar Hrachyshka's avatar Ihar Hrachyshka
Browse files

golly: fix build failure (missing distutils)

parent 3a15f234
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -31,7 +31,10 @@ stdenv.mkDerivation (finalAttrs: {
  ];

  nativeBuildInputs = [
    (python3.withPackages (ps: [ ps.setuptools ]))
    (python3.withPackages (ps: [
      ps.setuptools
      ps.distutils
    ]))
    wrapGAppsHook3
  ];