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
cl-sasl-path = lib.fetchgit {

View File

@ -1,4 +1,4 @@
{ pkgs, lib, cl-sasl, unstablePkgs, ... }:
{ pkgs, lib, cl-sasl, buildLisp, ... }:
let
cl-xmpp-path = lib.fetchgit {
@ -10,7 +10,7 @@ let
in {
cl-xmpp = lib.buildLisp.library {
cl-xmpp = buildLisp.library {
name = "cl-xmpp";
srcs = [
"${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";
src = [
"${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";
src = [
"${cl-xmpp-path}/cl-xmpp-tls.lisp"

View File

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