nixpkgs/pkgs/games/gnubg/default.nix

25 lines
706 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, glib, python, gtk2, readline }:
2015-01-03 00:10:16 +00:00
let version = "1.06.002"; in
2015-01-03 00:10:16 +00:00
stdenv.mkDerivation {
name = "gnubg-"+version;
src = fetchurl {
url = "http://gnubg.org/media/sources/gnubg-release-${version}-sources.tar.gz";
sha256 = "11xwhcli1h12k6rnhhyq4jphzrhfik7i8ah3k32pqw803460n6yf";
2015-01-03 00:10:16 +00:00
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ python glib gtk2 readline ];
2015-01-03 00:10:16 +00:00
configureFlags = [ "--with-gtk" "--with--board3d" ];
2021-01-15 04:31:39 +00:00
meta = with lib;
2015-04-28 08:54:58 +00:00
{ description = "World class backgammon application";
homepage = "http://www.gnubg.org/";
2015-01-03 00:10:16 +00:00
license = licenses.gpl3;
maintainers = [ maintainers.ehmry ];
2015-01-03 00:10:16 +00:00
platforms = platforms.linux;
};
}