nixpkgs/pkgs/games/fsg/default.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, gtk2, glib, pkg-config, libGLU, libGL, wxGTK, libX11, xorgproto
, runtimeShell }:
2021-06-22 21:44:58 +00:00
stdenv.mkDerivation rec {
pname = "fsg";
version = "4.4";
src = fetchurl {
2021-06-22 21:44:58 +00:00
name = "fsg-src-${version}.tar.gz";
url = "https://github.com/ctrlcctrlv/wxsand/blob/master/fsg-src-${version}-ORIGINAL.tar.gz?raw=true";
sha256 = "1756y01rkvd3f1pkj88jqh83fqcfl2fy0c48mcq53pjzln9ycv8c";
};
2016-08-29 17:01:03 +00:00
hardeningDisable = [ "format" ];
nativeBuildInputs = [ pkg-config ];
2019-11-10 16:44:34 +00:00
buildInputs = [ gtk2 glib libGLU libGL wxGTK libX11 xorgproto ];
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
'';
installPhase = ''
mkdir -p $out/bin $out/libexec
cp sand $out/libexec
echo -e '#!${runtimeShell}\nLC_ALL=C '$out'/libexec/sand "$@"' >$out/bin/fsg
chmod a+x $out/bin/fsg
'';
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;
};
}