Change arguments a bit

This commit is contained in:
Niten 2020-11-23 15:12:39 -08:00
parent 66d892cf79
commit 41f5e65617
3 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
{ pkgs, lib, ... } { pkgs, lib, buildLisp, ... }
let let
cl-sasl-path = lib.fetchgit { cl-sasl-path = lib.fetchgit {

View File

@ -1,4 +1,4 @@
{ pkgs, lib, cl-sasl, unstablePkgs, ... }: { pkgs, lib, cl-sasl, buildLisp, ... }:
let let
cl-xmpp-path = lib.fetchgit { cl-xmpp-path = lib.fetchgit {
@ -10,7 +10,7 @@ let
in { in {
cl-xmpp = lib.buildLisp.library { cl-xmpp = buildLisp.library {
name = "cl-xmpp"; name = "cl-xmpp";
srcs = [ srcs = [
"${cl-xmpp-path}/package.lisp" "${cl-xmpp-path}/package.lisp"
@ -28,7 +28,7 @@ in {
]; ];
}; };
cl-xmpp-sasl = lib.buildLisp.library { cl-xmpp-sasl = buildLisp.library {
name = "cl-xmpp-sasl"; name = "cl-xmpp-sasl";
src = [ src = [
"${cl-xmpp-path}/cl-xmpp-sasl.lisp" "${cl-xmpp-path}/cl-xmpp-sasl.lisp"
@ -40,7 +40,7 @@ in {
]; ];
}; };
cl-xmpp-tls = lib.buildLisp.library { cl-xmpp-tls = buildLisp.library {
name = "cl-xmpp-tls"; name = "cl-xmpp-tls";
src = [ src = [
"${cl-xmpp-path}/cl-xmpp-tls.lisp" "${cl-xmpp-path}/cl-xmpp-tls.lisp"

View File

@ -1,4 +1,4 @@
{ pkgs, lib, unstable-pkgs, ... }: { pkgs, lib, unstablePkgs, buildLisp, ... }:
with lib; with lib;
rec { rec {