0a2caa41fe
Drop `python.majorVersion`. For Python language version, use `python.pythonVersion`. For implementation version, use `python.sourceVersion`. Some expressions were broken. Those that were identified were fixed. fixup major
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{stdenv, fetchurl, wxGTK, perl, python2, zlib, libGLU_combined, libX11}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "golly";
|
|
version = "3.2";
|
|
|
|
src = fetchurl {
|
|
sha256 = "0cg9mbwmf4q6qxhqlnzrxh9y047banxdb8pd3hgj3smmja2zf0jd";
|
|
url="mirror://sourceforge/project/golly/golly/golly-${version}/golly-${version}-src.tar.gz";
|
|
};
|
|
|
|
buildInputs = [
|
|
wxGTK perl python2 zlib libGLU_combined libX11
|
|
];
|
|
|
|
setSourceRoot = ''
|
|
sourceRoot=$(echo */gui-wx/configure)
|
|
'';
|
|
|
|
# Link against Python explicitly as it is needed for scripts
|
|
makeFlags=[
|
|
"AM_LDFLAGS="
|
|
];
|
|
NIX_LDFLAGS="-l${python2.libPrefix} -lperl";
|
|
preConfigure=''
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -L$(dirname "$(find ${perl} -name libperl.so)")"
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE
|
|
-DPYTHON_SHLIB=$(basename "$(
|
|
readlink -f ${python2}/lib/libpython*.so)")"
|
|
'';
|
|
|
|
meta = {
|
|
inherit version;
|
|
description = "Cellular automata simulation program";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
downloadPage = "https://sourceforge.net/projects/golly/files/golly";
|
|
};
|
|
}
|