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