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