0498ccd076
HTTP -> HTTPS for : - http://gnu.org/ - http://www.gnu.org/ - http://elpa.gnu.org/ - http://lists.gnu.org/ - http://gcc.gnu.org/ - http://ftp.gnu.org/ (except in fetchurl mirrors) - http://bugs.gnu.org/
21 lines
488 B
Nix
21 lines
488 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gnugo-${version}";
|
|
version = "3.8";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/gnugo/gnugo-${version}.tar.gz";
|
|
sha256 = "0wkahvqpzq6lzl5r49a4sd4p52frdmphnqsfdv7gdp24bykdfs6s";
|
|
};
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
meta = {
|
|
description = "GNU Go - A computer go player";
|
|
homepage = https://www.gnu.org/software/gnugo/;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|