2019-02-26 11:45:54 +00:00
|
|
|
{ fetchurl, stdenv, erlang, cl, libGL, libGLU, runtimeShell }:
|
2010-07-01 10:08:37 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-04 18:09:56 +01:00
|
|
|
name = "wings-2.2.4";
|
2010-07-01 10:08:37 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/wings/${name}.tar.bz2";
|
2019-05-04 18:09:56 +01:00
|
|
|
sha256 = "1xcmifs4vq2810pqqvsjsm8z3lz24ys4c05xkh82nyppip2s89a3";
|
2010-07-01 10:08:37 +01:00
|
|
|
};
|
|
|
|
|
2018-12-30 14:25:05 +00:00
|
|
|
ERL_LIBS = "${cl}/lib/erlang/lib";
|
2010-07-01 10:08:37 +01:00
|
|
|
|
|
|
|
patchPhase = ''
|
2018-12-30 14:25:05 +00:00
|
|
|
sed -i 's,-Werror ,,' e3d/Makefile
|
|
|
|
sed -i 's,../../wings/,../,' icons/Makefile
|
|
|
|
find plugins_src -mindepth 2 -type f -name "*.[eh]rl" -exec sed -i 's,wings/src/,../../src/,' {} \;
|
|
|
|
find plugins_src -mindepth 2 -type f -name "*.[eh]rl" -exec sed -i 's,wings/e3d/,../../e3d/,' {} \;
|
|
|
|
find plugins_src -mindepth 2 -type f -name "*.[eh]rl" -exec sed -i 's,wings/intl_tools/,../../intl_tools/,' {} \;
|
|
|
|
find . -type f -name "*.[eh]rl" -exec sed -i 's,wings/src/,../src/,' {} \;
|
|
|
|
find . -type f -name "*.[eh]rl" -exec sed -i 's,wings/e3d/,../e3d/,' {} \;
|
|
|
|
find . -type f -name "*.[eh]rl" -exec sed -i 's,wings/intl_tools/,../intl_tools/,' {} \;
|
2010-07-01 10:08:37 +01:00
|
|
|
'';
|
|
|
|
|
2018-12-30 14:25:05 +00:00
|
|
|
buildInputs = [ erlang cl libGL libGLU ];
|
2010-07-01 10:08:37 +01:00
|
|
|
|
2016-03-29 11:23:12 +01:00
|
|
|
# I did not test the *cl* part. I added the -pa just by imitation.
|
2010-07-01 10:08:37 +01:00
|
|
|
installPhase = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/bin $out/lib/${name}/ebin
|
2010-07-01 10:08:37 +01:00
|
|
|
cp ebin/* $out/lib/${name}/ebin
|
2018-12-30 14:47:32 +00:00
|
|
|
cp -R textures shaders plugins $out/lib/$name
|
2010-07-01 10:08:37 +01:00
|
|
|
cat << EOF > $out/bin/wings
|
2019-02-26 11:45:54 +00:00
|
|
|
#!${runtimeShell}
|
2018-12-30 14:25:05 +00:00
|
|
|
${erlang}/bin/erl \
|
2010-07-01 10:08:37 +01:00
|
|
|
-pa $out/lib/${name}/ebin -run wings_start start_halt "$@"
|
|
|
|
EOF
|
|
|
|
chmod +x $out/bin/wings
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.wings3d.com/;
|
|
|
|
description = "Subdivision modeler inspired by Nendo and Mirai from Izware";
|
2019-05-05 09:34:08 +01:00
|
|
|
license = stdenv.lib.licenses.tcltk;
|
2010-07-01 10:08:37 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|