3
0
Fork 0
forked from mirrors/nixpkgs

gnubg: 1.06.002 -> 1.07.001

This commit is contained in:
SamLukeYes 2023-07-31 11:46:38 +08:00 committed by Emery Hemingway
parent 09b9265a4d
commit 45cbde5b8d

View file

@ -1,15 +1,15 @@
{ lib, stdenv, fetchurl, pkg-config, glib, python2, gtk2, readline }: { lib, stdenv, fetchurl, pkg-config, glib, python3, gtk2, readline }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gnubg"; pname = "gnubg";
version = "1.06.002"; version = "1.07.001";
src = fetchurl { src = fetchurl {
url = "http://gnubg.org/media/sources/gnubg-release-${version}-sources.tar.gz"; url = "mirror://gnu/gnubg/gnubg-release-${version}-sources.tar.gz";
sha256 = "11xwhcli1h12k6rnhhyq4jphzrhfik7i8ah3k32pqw803460n6yf"; hash = "sha256-cjmXKUGcrZ8RLDBmoS0AANpFCkVq3XsJTYkVUGnWgh4=";
}; };
nativeBuildInputs = [ pkg-config python2 glib ]; nativeBuildInputs = [ pkg-config python3 glib ];
buildInputs = [ gtk2 readline ]; buildInputs = [ gtk2 readline ];
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
meta = with lib; meta = with lib;
{ description = "World class backgammon application"; { description = "World class backgammon application";
homepage = "http://www.gnubg.org/"; homepage = "https://www.gnu.org/software/gnubg/";
license = licenses.gpl3; license = licenses.gpl3;
maintainers = [ maintainers.ehmry ]; maintainers = [ maintainers.ehmry ];
platforms = platforms.linux; platforms = platforms.linux;