3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/misc/golly/default.nix

46 lines
1.3 KiB
Nix
Raw Normal View History

2017-02-10 08:28:13 +00:00
{stdenv, fetchurl, wxGTK, perl, python2, zlib, mesa, libX11}:
2014-07-28 10:43:20 +01:00
let
2014-09-24 11:07:00 +01:00
s = # Generated upstream information
rec {
baseName="golly";
2016-08-10 18:21:06 +01:00
version="2.8";
2014-09-24 11:07:00 +01:00
name="${baseName}-${version}";
2016-08-10 18:21:06 +01:00
hash="0a4vn2hm7h4b47v2iwip1z3n9y8isf79v08aipl2iqms2m3p5204";
url="mirror://sourceforge/project/golly/golly/golly-2.8/golly-2.8-src.tar.gz";
sha256="0a4vn2hm7h4b47v2iwip1z3n9y8isf79v08aipl2iqms2m3p5204";
2014-09-24 11:07:00 +01:00
};
buildInputs = [
2017-02-10 08:28:13 +00:00
wxGTK perl python2 zlib mesa libX11
2014-09-24 11:07:00 +01:00
];
in
stdenv.mkDerivation rec {
2014-09-24 11:07:00 +01:00
inherit (s) name version;
inherit buildInputs;
2014-09-24 11:07:00 +01:00
src = fetchurl {
inherit (s) url sha256;
};
sourceRoot="${name}-src/gui-wx/configure";
# Link against Python explicitly as it is needed for scripts
makeFlags=[
"AM_LDFLAGS="
];
2017-02-10 08:28:13 +00:00
NIX_LDFLAGS="-lpython${python2.majorVersion} -lperl";
preConfigure=''
export NIX_LDFLAGS="$NIX_LDFLAGS -L$(dirname "$(find ${perl} -name libperl.so)")"
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE
-DPYTHON_SHLIB=$(basename "$(
2017-02-10 08:28:13 +00:00
readlink -f ${python2}/lib/libpython*.so)")"
'';
meta = {
2014-09-24 11:07:00 +01:00
inherit (s) version;
description = "Cellular automata simulation program";
2014-09-24 11:07:00 +01:00
license = stdenv.lib.licenses.gpl2;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
downloadPage = "http://sourceforge.net/projects/golly/files/golly";
};
2014-09-24 11:07:00 +01:00
}