gnubg: 1.06.002 -> 1.07.001

authored by SamLukeYes and committed by Emery Hemingway 45cbde5b 09b9265a

+6 -6
+6 -6
pkgs/games/gnubg/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, glib, python2, gtk2, readline }: 1 + { lib, stdenv, fetchurl, pkg-config, glib, python3, gtk2, readline }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "gnubg"; 5 - version = "1.06.002"; 5 + version = "1.07.001"; 6 6 7 7 src = fetchurl { 8 - url = "http://gnubg.org/media/sources/gnubg-release-${version}-sources.tar.gz"; 9 - sha256 = "11xwhcli1h12k6rnhhyq4jphzrhfik7i8ah3k32pqw803460n6yf"; 8 + url = "mirror://gnu/gnubg/gnubg-release-${version}-sources.tar.gz"; 9 + hash = "sha256-cjmXKUGcrZ8RLDBmoS0AANpFCkVq3XsJTYkVUGnWgh4="; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkg-config python2 glib ]; 12 + nativeBuildInputs = [ pkg-config python3 glib ]; 13 13 14 14 buildInputs = [ gtk2 readline ]; 15 15 ··· 19 19 20 20 meta = with lib; 21 21 { description = "World class backgammon application"; 22 - homepage = "http://www.gnubg.org/"; 22 + homepage = "https://www.gnu.org/software/gnubg/"; 23 23 license = licenses.gpl3; 24 24 maintainers = [ maintainers.ehmry ]; 25 25 platforms = platforms.linux;