summary refs log tree commit diff
path: root/pkgs/games/gnubg/default.nix
blob: 80cc776326653960e8de5bcc54951faa178b7182 (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
{ stdenv, fetchurl, pkgconfig, glib, python, gtk2 }:

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 ];

  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;
    };
}