build: add configurePhase for urbit derivation

46a438f introduced use of the stdenv generic builder instead of an
explicit builder.sh script.  This was reverted in 1daaf041a as it proved
to cause problems when building on some Linux variants.

This fixes the problem encountered on Linux by calling the standard
configure script with bash in an explicit configurePhase.
This commit is contained in:
Jared Tobin 2020-02-24 14:34:15 +04:00
parent f66d750e1c
commit 05a0a9092a
No known key found for this signature in database
GPG Key ID: 0E4647D58F8A69E4

View File

@ -29,6 +29,10 @@ let
src = ../../../pkg/urbit;
nativeBuildInputs = deps ++ vendor;
configurePhase = ''
bash ./configure
'';
installPhase = ''
make all -j8
make test