2020-10-27 00:29:36 +00:00
|
|
|
args @ { fetchurl, ... }:
|
|
|
|
rec {
|
2021-02-05 17:12:51 +00:00
|
|
|
baseName = "chanl";
|
|
|
|
version = "20201016-git";
|
2020-10-27 00:29:36 +00:00
|
|
|
|
|
|
|
parasites = [ "chanl/examples" "chanl/tests" ];
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
description = "Communicating Sequential Process support for Common Lisp";
|
2020-10-27 00:29:36 +00:00
|
|
|
|
|
|
|
deps = [ args."alexandria" args."bordeaux-threads" args."fiveam" ];
|
|
|
|
|
|
|
|
src = fetchurl {
|
2021-02-05 17:12:51 +00:00
|
|
|
url = "http://beta.quicklisp.org/archive/chanl/2020-10-16/chanl-20201016-git.tgz";
|
|
|
|
sha256 = "13kmk6q20kkwy8z3fy0sv57076xf5nls3qx31yp47vaxhn9p11a1";
|
2020-10-27 00:29:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
packageName = "chanl";
|
|
|
|
|
|
|
|
asdFilesToKeep = ["chanl.asd"];
|
|
|
|
overrides = x: x;
|
|
|
|
}
|
|
|
|
/* (SYSTEM chanl DESCRIPTION
|
|
|
|
Communicating Sequential Process support for Common Lisp SHA256
|
|
|
|
13kmk6q20kkwy8z3fy0sv57076xf5nls3qx31yp47vaxhn9p11a1 URL
|
|
|
|
http://beta.quicklisp.org/archive/chanl/2020-10-16/chanl-20201016-git.tgz
|
|
|
|
MD5 7870137f4c905f64290634ae3d0aa3fd NAME chanl FILENAME chanl DEPS
|
|
|
|
((NAME alexandria FILENAME alexandria)
|
|
|
|
(NAME bordeaux-threads FILENAME bordeaux-threads)
|
|
|
|
(NAME fiveam FILENAME fiveam))
|
|
|
|
DEPENDENCIES (alexandria bordeaux-threads fiveam) VERSION 20201016-git
|
|
|
|
SIBLINGS NIL PARASITES (chanl/examples chanl/tests)) */
|