wings: format

This commit is contained in:
liberodark
2025-02-17 11:58:57 +01:00
parent 4cf8a147dd
commit d171a77b55
+17 -2
View File
@@ -1,4 +1,14 @@
{ lib, stdenv, fetchurl, fetchpatch, erlang, cl, libGL, libGLU, runtimeShell }:
{
lib,
stdenv,
fetchurl,
fetchpatch,
erlang,
cl,
libGL,
libGLU,
runtimeShell,
}:
stdenv.mkDerivation rec {
pname = "wings";
@@ -27,7 +37,12 @@ stdenv.mkDerivation rec {
find . -type f -name "*.[eh]rl" -exec sed -i 's,wings/intl_tools/,../intl_tools/,' {} \;
'';
buildInputs = [ erlang cl libGL libGLU ];
buildInputs = [
erlang
cl
libGL
libGLU
];
ERL_LIBS = "${cl}/lib/erlang/lib";