1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 12:11:28 +00:00

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
This commit is contained in:
Joachim Fasting 2016-10-29 17:08:18 +02:00
parent ba9c422caa
commit 0607fa1874
No known key found for this signature in database
GPG key ID: 7544761007FE4E08

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, glib, python, gtk2 }: { stdenv, fetchurl, pkgconfig, glib, python, gtk2, readline }:
let version = "1.04.000"; in let version = "1.04.000"; in
stdenv.mkDerivation { stdenv.mkDerivation {
@ -9,7 +9,7 @@ stdenv.mkDerivation {
sha256 = "0gsfl6qbj529d1jg3bkyj9m7bvb566wd7pq5fslgg5yn6c6rbjk6"; sha256 = "0gsfl6qbj529d1jg3bkyj9m7bvb566wd7pq5fslgg5yn6c6rbjk6";
}; };
buildInputs = [ pkgconfig python glib gtk2 ]; buildInputs = [ pkgconfig python glib gtk2 readline ];
configureFlags = [ "--with-gtk" "--with--board3d" ]; configureFlags = [ "--with-gtk" "--with--board3d" ];