Fix letsencrypt ca
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ pkgs, backplane-server, arrows, ip-utils, ... }:
|
||||
{ pkgs, localLispPackages, ... }:
|
||||
|
||||
pkgs.lispPackages.buildLispPackage {
|
||||
baseName = "backplane-dns";
|
||||
@@ -7,7 +7,14 @@ pkgs.lispPackages.buildLispPackage {
|
||||
|
||||
buildSystems = [ "backplane-dns" ];
|
||||
|
||||
deps = with pkgs.lispPackages; [
|
||||
src = pkgs.fetchgit {
|
||||
url = "https://git.fudo.org/fudo-public/backplane-dns.git";
|
||||
rev = "3075453a8ccc8bf285bfc83d84317044590ae060";
|
||||
sha256 = "1sdgr9zxqam4c8f7nlkgm77si45j0qvvgj6rav9kd6jz6vqgcbi5";
|
||||
fetchSubmodules = false;
|
||||
};
|
||||
|
||||
deps = with localLispPackages; [
|
||||
arrows
|
||||
alexandria
|
||||
backplane-server
|
||||
@@ -18,12 +25,5 @@ pkgs.lispPackages.buildLispPackage {
|
||||
trivia
|
||||
];
|
||||
|
||||
src = pkgs.fetchgit {
|
||||
url = "https://git.fudo.org/fudo-public/backplane-dns.git";
|
||||
rev = "3075453a8ccc8bf285bfc83d84317044590ae060";
|
||||
sha256 = "1sdgr9zxqam4c8f7nlkgm77si45j0qvvgj6rav9kd6jz6vqgcbi5";
|
||||
fetchSubmodules = false;
|
||||
};
|
||||
|
||||
asdFilesToKeep = [ "backplane-dns.asd" ];
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ pkgs, lib, arrows, cl-xmpp, ... }:
|
||||
{ pkgs, lib, localLispPackages, ... }:
|
||||
|
||||
pkgs.lispPackages.buildLispPackage {
|
||||
baseName = "backplane-server";
|
||||
@@ -7,8 +7,6 @@ pkgs.lispPackages.buildLispPackage {
|
||||
|
||||
buildSystems = [ "backplane-server" ];
|
||||
|
||||
deps = with pkgs.lispPackages; [ alexandria arrows cl-json cl-xmpp prove ];
|
||||
|
||||
src = pkgs.fetchgit {
|
||||
url = "https://git.fudo.org/fudo-public/backplane-server.git";
|
||||
rev = "5b50dd8badf5b5460e9cc7e76e191d274712a3bd";
|
||||
@@ -16,5 +14,15 @@ pkgs.lispPackages.buildLispPackage {
|
||||
fetchSubmodules = false;
|
||||
};
|
||||
|
||||
deps = with localLispPackages; [
|
||||
alexandria
|
||||
arrows
|
||||
asdf-package-system
|
||||
asdf-system-connections
|
||||
cl-json
|
||||
cl-xmpp
|
||||
prove
|
||||
];
|
||||
|
||||
asdFilesToKeep = [ "backplane-server.asd" ];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user