Skip to content

Commit

Permalink
lispPackages.cl-fuse: compile the small wrapper library manually, bec…
Browse files Browse the repository at this point in the history
…ause for some reason NIX_LDFLAGS get lost with the new binutils wrapper
  • Loading branch information
7c6f434c committed Dec 19, 2017
1 parent 523fae9 commit e618aad
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix
Expand Up @@ -30,6 +30,12 @@ in
configurePhase = ''
export makeFlags="$makeFlags LISP=common-lisp.sh"
'';
preInstall = ''
type gcc
mkdir -p "$out/lib/common-lisp/"
cp -r . "$out/lib/common-lisp/cl-fuse/"
"gcc" "-x" "c" "$out/lib/common-lisp/cl-fuse/fuse-launcher.c-minus" "-fPIC" "--shared" "-lfuse" "-o" "$out/lib/common-lisp/cl-fuse/libfuse-launcher.so"
'';
};
};
hunchentoot = addNativeLibs [pkgs.openssl];
Expand Down

0 comments on commit e618aad

Please sign in to comment.