2021-01-17 08:49:22 +03:00
|
|
|
{ lib, stdenv, fetchurl, gtk2, glib, pkg-config, libGLU, libGL, wxGTK, libX11, xorgproto
|
2019-02-26 14:45:54 +03:00
|
|
|
, runtimeShell }:
|
2009-03-03 16:27:40 +03:00
|
|
|
|
2007-10-27 21:56:24 +04:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "fsg-4.4";
|
|
|
|
|
2009-03-03 16:27:40 +03:00
|
|
|
src = fetchurl {
|
2018-08-21 17:27:11 +03:00
|
|
|
name = "fsg-src-4.4.tar.gz";
|
|
|
|
url = "https://github.com/ctrlcctrlv/wxsand/blob/master/fsg-src-4.4-ORIGINAL.tar.gz?raw=true";
|
2009-03-03 16:27:40 +03:00
|
|
|
sha256 = "1756y01rkvd3f1pkj88jqh83fqcfl2fy0c48mcq53pjzln9ycv8c";
|
|
|
|
};
|
2007-10-27 21:56:24 +04:00
|
|
|
|
2016-08-29 20:01:03 +03:00
|
|
|
hardeningDisable = [ "format" ];
|
2007-10-27 21:56:24 +04:00
|
|
|
|
2021-01-17 08:49:22 +03:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-11-10 19:44:34 +03:00
|
|
|
buildInputs = [ gtk2 glib libGLU libGL wxGTK libX11 xorgproto ];
|
2007-10-27 21:56:24 +04:00
|
|
|
|
2009-03-03 16:27:40 +03:00
|
|
|
preBuild = ''
|
|
|
|
sed -e '
|
|
|
|
s@currentProbIndex != 100@0@;
|
|
|
|
' -i MainFrame.cpp
|
2013-12-11 16:37:08 +04:00
|
|
|
sed -re '/ctrans_prob/s/energy\[center][+]energy\[other]/(int)(fmin(energy[center]+energy[other],99))/g' -i Canvas.cpp
|
2009-03-03 16:27:40 +03:00
|
|
|
'';
|
2007-10-27 21:56:24 +04:00
|
|
|
|
2009-03-03 16:27:40 +03:00
|
|
|
installPhase = ''
|
2012-01-19 00:16:00 +04:00
|
|
|
mkdir -p $out/bin $out/libexec
|
2009-03-03 16:27:40 +03:00
|
|
|
cp sand $out/libexec
|
2019-02-26 14:45:54 +03:00
|
|
|
echo -e '#!${runtimeShell}\nLC_ALL=C '$out'/libexec/sand "$@"' >$out/bin/fsg
|
2009-03-03 16:27:40 +03:00
|
|
|
chmod a+x $out/bin/fsg
|
|
|
|
'';
|
2007-10-27 21:56:24 +04:00
|
|
|
|
|
|
|
meta = {
|
2014-11-05 11:12:35 +03:00
|
|
|
description = "Cellular automata engine tuned towards the likes of Falling Sand";
|
2021-01-15 07:31:39 +03:00
|
|
|
maintainers = [lib.maintainers.raskin];
|
|
|
|
platforms = lib.platforms.linux;
|
2007-10-27 21:56:24 +04:00
|
|
|
};
|
|
|
|
}
|