2022-07-08 18:21:55 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, glib, python, gtk2, readline }:
|
2015-01-03 00:10:16 +00:00
|
|
|
|
2022-01-11 12:50:16 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gnubg";
|
|
|
|
version = "1.06.002";
|
2015-01-03 00:10:16 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://gnubg.org/media/sources/gnubg-release-${version}-sources.tar.gz";
|
2018-08-17 20:17:14 +01:00
|
|
|
sha256 = "11xwhcli1h12k6rnhhyq4jphzrhfik7i8ah3k32pqw803460n6yf";
|
2015-01-03 00:10:16 +00:00
|
|
|
};
|
|
|
|
|
2022-07-08 18:21:55 +01:00
|
|
|
nativeBuildInputs = [ pkg-config python glib ];
|
|
|
|
|
|
|
|
buildInputs = [ gtk2 readline ];
|
2021-03-25 14:40:50 +00:00
|
|
|
|
|
|
|
strictDeps = true;
|
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 09:54:58 +01:00
|
|
|
{ description = "World class backgammon application";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.gnubg.org/";
|
2015-01-03 00:10:16 +00:00
|
|
|
license = licenses.gpl3;
|
2015-12-05 21:41:25 +00:00
|
|
|
maintainers = [ maintainers.ehmry ];
|
2015-01-03 00:10:16 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|