41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
|
{ fetchurl, stdenv, erlang, esdl }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "wings-1.3.0.1";
|
||
|
src = fetchurl {
|
||
|
url = "mirror://sourceforge/wings/${name}.tar.bz2";
|
||
|
sha256 = "1zab1qxhgrncwqj1xg6z08m0kqbkdiqp4777p1bv2kczcf31isyp";
|
||
|
};
|
||
|
|
||
|
ERL_LIBS = "${esdl}/lib/erlang/addons";
|
||
|
|
||
|
patchPhase = ''
|
||
|
sed -i 's,include("sdl_keyboard.hrl"),include_lib("esdl/include/sdl_keyboard.hrl"),' \
|
||
|
src/wings_body.erl plugins_src/commands/wpc_constraints.erl
|
||
|
'';
|
||
|
|
||
|
buildInputs = [ erlang esdl ];
|
||
|
|
||
|
installPhase = ''
|
||
|
ensureDir $out/bin $out/lib/${name}/ebin
|
||
|
cp ebin/* $out/lib/${name}/ebin
|
||
|
cp -R fonts textures shaders plugins $out/lib/$name
|
||
|
cat << EOF > $out/bin/wings
|
||
|
#!/bin/sh
|
||
|
export ROOTDIR=$out/lib/erlang/addons/${name}
|
||
|
${erlang}/bin/erl -smp disable -pa ${esdl}/lib/erlang/addons/${esdl.name}/ebin \
|
||
|
-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";
|
||
|
license = "BSD";
|
||
|
maintainers = with stdenv.lib.maintainers; [viric];
|
||
|
platforms = with stdenv.lib.platforms; linux;
|
||
|
};
|
||
|
}
|
||
|
|