Change arguments a bit
This commit is contained in:
parent
66d892cf79
commit
41f5e65617
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, lib, ... }
|
||||
{ pkgs, lib, buildLisp, ... }
|
||||
|
||||
let
|
||||
cl-sasl-path = lib.fetchgit {
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, lib, unstable-pkgs, ... }:
|
||||
{ pkgs, lib, unstablePkgs, buildLisp, ... }:
|
||||
|
||||
with lib;
|
||||
rec {
|
||||
|
|
Loading…
Reference in New Issue