python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / gnubg / default.nix
blob72762679052901058dbd9b288de57f19046239a8
1 { lib, stdenv, fetchurl, pkg-config, glib, python2, gtk2, readline }:
3 stdenv.mkDerivation rec {
4   pname = "gnubg";
5   version = "1.06.002";
7   src = fetchurl {
8     url = "http://gnubg.org/media/sources/gnubg-release-${version}-sources.tar.gz";
9     sha256 = "11xwhcli1h12k6rnhhyq4jphzrhfik7i8ah3k32pqw803460n6yf";
10   };
12   nativeBuildInputs = [ pkg-config python2 glib ];
14   buildInputs = [ gtk2 readline ];
16   strictDeps = true;
18   configureFlags = [ "--with-gtk" "--with--board3d" ];
20   meta = with lib;
21     { description = "World class backgammon application";
22       homepage = "http://www.gnubg.org/";
23       license = licenses.gpl3;
24       maintainers = [ maintainers.ehmry ];
25       platforms = platforms.linux;
26     };