fileshelter: link with pthreads explicitly

This commit is contained in:
Piotr Bogdan 2019-01-04 19:33:50 +00:00
parent 69981de277
commit 12c733c292

View file

@ -16,6 +16,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libzip boost wt3 libconfig ];
NIX_LDFLAGS = [
"-lpthread"
];
postInstall = ''
ln -s ${wt3}/share/Wt/resources $out/share/fileshelter/docroot/resources
'';