gnubg: use python3

This commit is contained in:
Frederik Rietdijk 2021-03-25 15:40:50 +01:00
parent 34c23dbb42
commit c85a64002c
1 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, pkg-config, glib, python, gtk2, readline }:
{ lib, stdenv, fetchurl, pkg-config, glib, python3, gtk2, readline }:
let version = "1.06.002"; in
stdenv.mkDerivation {
@ -9,8 +9,10 @@ stdenv.mkDerivation {
sha256 = "11xwhcli1h12k6rnhhyq4jphzrhfik7i8ah3k32pqw803460n6yf";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ python glib gtk2 readline ];
nativeBuildInputs = [ pkg-config python3 glib ];
buildInputs = [ gtk2 readline ];
strictDeps = true;
configureFlags = [ "--with-gtk" "--with--board3d" ];