gnubg: use python3

wip/yesman
Frederik Rietdijk 3 years ago
parent 34c23dbb42
commit c85a64002c
  1. 8
      pkgs/games/gnubg/default.nix

@ -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" ];

Loading…
Cancel
Save