Merge pull request #5538 from ehmry/gnubg
gnubg: initial package at 1.04.000
This commit is contained in:
commit
d79bba5116
|
@ -0,0 +1,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.emery ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -11831,6 +11831,8 @@ let
|
||||||
|
|
||||||
gltron = callPackage ../games/gltron { };
|
gltron = callPackage ../games/gltron { };
|
||||||
|
|
||||||
|
gnubg = callPackage ../games/gnubg { };
|
||||||
|
|
||||||
gnuchess = callPackage ../games/gnuchess { };
|
gnuchess = callPackage ../games/gnuchess { };
|
||||||
|
|
||||||
gnugo = callPackage ../games/gnugo { };
|
gnugo = callPackage ../games/gnugo { };
|
||||||
|
|
Loading…
Reference in New Issue