Commit 45cbde5b authored by SamLukeYes's avatar SamLukeYes Committed by Emery Hemingway
Browse files

gnubg: 1.06.002 -> 1.07.001

parent 09b9265a
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, pkg-config, glib, python2, gtk2, readline }:
{ lib, stdenv, fetchurl, pkg-config, glib, python3, gtk2, readline }:

stdenv.mkDerivation rec {
  pname = "gnubg";
  version = "1.06.002";
  version = "1.07.001";

  src = fetchurl {
    url = "http://gnubg.org/media/sources/gnubg-release-${version}-sources.tar.gz";
    sha256 = "11xwhcli1h12k6rnhhyq4jphzrhfik7i8ah3k32pqw803460n6yf";
    url = "mirror://gnu/gnubg/gnubg-release-${version}-sources.tar.gz";
    hash = "sha256-cjmXKUGcrZ8RLDBmoS0AANpFCkVq3XsJTYkVUGnWgh4=";
  };

  nativeBuildInputs = [ pkg-config python2 glib ];
  nativeBuildInputs = [ pkg-config python3 glib ];

  buildInputs = [ gtk2 readline ];

@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {

  meta = with lib;
    { description = "World class backgammon application";
      homepage = "http://www.gnubg.org/";
      homepage = "https://www.gnu.org/software/gnubg/";
      license = licenses.gpl3;
      maintainers = [ maintainers.ehmry ];
      platforms = platforms.linux;