hop: fix build

The configure process tries to escape the sandbox by writing into /tmp
This commit is contained in:
Vincent Laporte 2020-09-13 07:55:14 +02:00 committed by Jon
parent a4c2512d7b
commit 943fa12e6a

View File

@ -7,6 +7,10 @@ stdenv.mkDerivation rec {
sha256 = "1bvp7pc71bln5yvfj87s8750c6l53wjl6f8m12v62q9926adhwys";
};
postPatch = ''
substituteInPlace configure --replace "(os-tmp)" '(getenv "TMPDIR")'
'';
buildInputs = [ bigloo ];
preConfigure = ''