2022-05-21 09:52:03 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch }:
|
2010-05-17 09:21:42 +00:00
|
|
|
|
2016-08-03 20:04:03 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "gnugo";
|
2016-08-03 20:04:03 +00:00
|
|
|
version = "3.8";
|
2010-05-17 09:21:42 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-08-03 20:04:03 +00:00
|
|
|
url = "mirror://gnu/gnugo/gnugo-${version}.tar.gz";
|
2010-05-17 09:21:42 +00:00
|
|
|
sha256 = "0wkahvqpzq6lzl5r49a4sd4p52frdmphnqsfdv7gdp24bykdfs6s";
|
|
|
|
};
|
|
|
|
|
2022-05-21 09:52:03 +00:00
|
|
|
patches = [
|
|
|
|
# Pull patch pending upstream inclusion for -fno-common toolchain support:
|
|
|
|
# https://savannah.gnu.org/patch/index.php?10208
|
|
|
|
(fetchpatch {
|
|
|
|
name = "fno-common.patch";
|
|
|
|
url = "https://savannah.gnu.org/patch/download.php?file_id=53240";
|
|
|
|
sha256 = "0s96qvmx244vq5pv2nzf7x863kq2y5skzjhbpyzaajfkldbj0sw4";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2016-08-03 20:04:03 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2010-05-17 09:21:42 +00:00
|
|
|
meta = {
|
|
|
|
description = "GNU Go - A computer go player";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "gnugo";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.gnu.org/software/gnugo/";
|
2021-01-15 04:31:39 +00:00
|
|
|
license = lib.licenses.gpl3;
|
|
|
|
platforms = lib.platforms.unix;
|
2010-05-17 09:21:42 +00:00
|
|
|
};
|
|
|
|
}
|