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