lispPackages, lispPackages.quicklisp-to-nix: 2017-07-25 -> 2018-01-31

* update Quicklisp distinfo
* regenerate packages
* add cl-html-parse and closure-html
* add proper mariadb library path to fix cl-mysql
* escape memoization filenames for systems
* lispPackages.cl-postgres: keep simple-date in the same package
This commit is contained in:
Michael Raskin
2018-02-12 20:45:33 +01:00
parent 02b8929b70
commit fb8379cc76
88 changed files with 1048 additions and 748 deletions
@@ -139,4 +139,19 @@ $out/lib/common-lisp/query-fs"
"cl-unification-lib.asd"
];
};
simple-date = x: {
deps = with quicklisp-to-nix-packages; [
fiveam md5 usocket
];
parasites = [
"simple-date/tests"
];
};
cl-postgres = x: {
deps = pkgs.lib.filter (x: x.outPath != quicklisp-to-nix-packages.simple-date.outPath) x.deps;
parasites = (x.parasites or []) ++ [
"simple-date" "simple-date/postgres-glue"
];
asdFilesToKeep = x.asdFilesToKeep ++ ["simple-date.asd"];
};
}