gnubg: fix build

Presumably, readline used to be propagated from one of the other inputs
but is no longer (the build succeeds on 16.09 but is unable to locate
readline.h on master).

https://hydra.nixos.org/build/42761215

+2 -2
+2 -2
pkgs/games/gnubg/default.nix
··· 1 - { stdenv, fetchurl, pkgconfig, glib, python, gtk2 }: 1 + { stdenv, fetchurl, pkgconfig, glib, python, gtk2, readline }: 2 2 3 3 let version = "1.04.000"; in 4 4 stdenv.mkDerivation { ··· 9 9 sha256 = "0gsfl6qbj529d1jg3bkyj9m7bvb566wd7pq5fslgg5yn6c6rbjk6"; 10 10 }; 11 11 12 - buildInputs = [ pkgconfig python glib gtk2 ]; 12 + buildInputs = [ pkgconfig python glib gtk2 readline ]; 13 13 14 14 configureFlags = [ "--with-gtk" "--with--board3d" ]; 15 15