Fix more common-lisp.net source

This commit is contained in:
Michael Raskin 2015-04-14 12:48:33 +03:00
parent ddfd81ec88
commit c9556bff3c

View File

@ -52,7 +52,7 @@ let lispPackages = rec {
description = "A collection of portable public domain utilities"; description = "A collection of portable public domain utilities";
deps = []; deps = [];
src = pkgs.fetchgit { src = pkgs.fetchgit {
url = "git://common-lisp.net/projects/alexandria/alexandria.git"; url = "https://gitlab.common-lisp.net/alexandria/alexandria.git";
sha256 = "1d981a243f9d4d3c9fd86cc47698050507ff615b87b9a710449abdb4234e501b"; sha256 = "1d981a243f9d4d3c9fd86cc47698050507ff615b87b9a710449abdb4234e501b";
rev = ''2b1eb4067fb34bc501e527de75d09166a8ba9ceb''; rev = ''2b1eb4067fb34bc501e527de75d09166a8ba9ceb'';
}; };
@ -308,10 +308,10 @@ let lispPackages = rec {
description = "A UTF-8 encoding library"; description = "A UTF-8 encoding library";
deps = []; deps = [];
# Source type: darcs # Source type: darcs
src = pkgs.fetchdarcs { src = (pkgs.lib.overrideDerivation (pkgs.fetchdarcs {
url = ''http://common-lisp.net/project/trivial-utf-8/darcs/trivial-utf-8/''; url = ''http://common-lisp.net/project/trivial-utf-8/darcs/trivial-utf-8/'';
sha256 = "1jz27gz8gvqdmvp3k9bxschs6d5b3qgk94qp2bj6nv1d0jc3m1l1"; sha256 = "1jz27gz8gvqdmvp3k9bxschs6d5b3qgk94qp2bj6nv1d0jc3m1l1";
}; }) (x: {SSL_CERT_FILE=pkgs.cacert + "/etc/ca-bundle.crt";}));
}; };
cl-fuse-meta-fs = buildLispPackage rec { cl-fuse-meta-fs = buildLispPackage rec {