diff options
Diffstat (limited to 'third_party/lisp/cl-plus-ssl.nix')
-rw-r--r-- | third_party/lisp/cl-plus-ssl.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/lisp/cl-plus-ssl.nix b/third_party/lisp/cl-plus-ssl.nix index 63c21aa6ba45..e4f3fd95e406 100644 --- a/third_party/lisp/cl-plus-ssl.nix +++ b/third_party/lisp/cl-plus-ssl.nix @@ -1,5 +1,5 @@ # Common Lisp bindings to OpenSSL -{ depot, ... }: +{ depot, pkgs, ... }: with depot.nix; @@ -21,7 +21,7 @@ in buildLisp.library { (buildLisp.bundled "sb-posix") ]; - native = [ depot.third_party.openssl ]; + native = [ pkgs.openssl ]; srcs = map (f: src + ("/src/" + f)) [ "package.lisp" |