gnubg: Fix build

This commit is contained in:
Jonas Heinrich 2022-07-08 19:21:55 +02:00 committed by ehmry
parent 81f94c0938
commit cb6a80cee0

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, pkg-config, glib, python3, gtk2, readline }:
{ lib, stdenv, fetchurl, pkg-config, glib, python, gtk2, readline }:
stdenv.mkDerivation rec {
pname = "gnubg";
@ -9,8 +9,9 @@ stdenv.mkDerivation rec {
sha256 = "11xwhcli1h12k6rnhhyq4jphzrhfik7i8ah3k32pqw803460n6yf";
};
nativeBuildInputs = [ pkg-config python3 glib ];
buildInputs = [ gtk2 readline ];
nativeBuildInputs = [ pkg-config python glib ];
buildInputs = [ gtk2 readline ];
strictDeps = true;