nixpkgs/pkgs/games/gnubg/default.nix

24 lines
677 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, glib, python, gtk2, readline }:
2015-01-03 00:10:16 +00:00
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 ];
2015-01-03 00:10:16 +00:00
configureFlags = [ "--with-gtk" "--with--board3d" ];
meta = with stdenv.lib;
2015-04-28 08:54:58 +00:00
{ description = "World class backgammon application";
2015-01-03 00:10:16 +00:00
homepage = http://www.gnubg.org/;
license = licenses.gpl3;
maintainers = [ maintainers.ehmry ];
2015-01-03 00:10:16 +00:00
platforms = platforms.linux;
};
}