about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/gnubg/default.nix
blob: 7402049a9d82049e1ea75c2b34e218dfafb699d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, stdenv, fetchurl, pkg-config, glib, python3, gtk2, readline }:

let version = "1.06.002"; in
stdenv.mkDerivation {
  name = "gnubg-"+version;

  src = fetchurl {
    url = "http://gnubg.org/media/sources/gnubg-release-${version}-sources.tar.gz";
    sha256 = "11xwhcli1h12k6rnhhyq4jphzrhfik7i8ah3k32pqw803460n6yf";
  };

  nativeBuildInputs = [ pkg-config python3 glib ];
  buildInputs = [  gtk2 readline ];

  strictDeps = true;

  configureFlags = [ "--with-gtk" "--with--board3d" ];

  meta = with lib;
    { description = "World class backgammon application";
      homepage = "http://www.gnubg.org/";
      license = licenses.gpl3;
      maintainers = [ maintainers.ehmry ];
      platforms = platforms.linux;
    };
}