nixpkgs/pkgs/games/gnubg/default.nix
Joachim Fasting 0607fa1874
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
2016-11-01 16:35:19 +01:00

24 lines
677 B
Nix

{ stdenv, fetchurl, pkgconfig, glib, python, gtk2, readline }:
let version = "1.04.000"; in
stdenv.mkDerivation {
name = "gnubg-"+version;
src = fetchurl {
url = "http://gnubg.org/media/sources/gnubg-release-${version}-sources.tar.gz";
sha256 = "0gsfl6qbj529d1jg3bkyj9m7bvb566wd7pq5fslgg5yn6c6rbjk6";
};
buildInputs = [ pkgconfig python glib gtk2 readline ];
configureFlags = [ "--with-gtk" "--with--board3d" ];
meta = with stdenv.lib;
{ description = "World class backgammon application";
homepage = http://www.gnubg.org/;
license = licenses.gpl3;
maintainers = [ maintainers.ehmry ];
platforms = platforms.linux;
};
}