2020-07-24 19:36:40 +02:00
|
|
|
{ depot, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
inherit (pkgs) runCommand;
|
|
|
|
inherit (depot.nix.buildLisp) bundled;
|
2021-12-14 22:32:27 +01:00
|
|
|
src = with pkgs; srcOnly lispPackages.uax-15;
|
2022-01-30 17:06:58 +01:00
|
|
|
in
|
|
|
|
depot.nix.buildLisp.library {
|
2020-07-24 19:36:40 +02:00
|
|
|
name = "uax-15";
|
|
|
|
|
2021-04-10 02:13:18 +02:00
|
|
|
deps = with depot.third_party.lisp; [
|
2020-07-24 19:36:40 +02:00
|
|
|
split-sequence
|
|
|
|
cl-ppcre
|
|
|
|
(bundled "asdf")
|
|
|
|
];
|
|
|
|
|
|
|
|
srcs = [
|
|
|
|
"${src}/src/package.lisp"
|
|
|
|
"${src}/src/utilities.lisp"
|
|
|
|
"${src}/src/trivial-utf-16.lisp"
|
2021-12-14 22:32:27 +01:00
|
|
|
|
|
|
|
# uax-15 has runtime data files that need to have their references
|
|
|
|
# replaced with store paths.
|
|
|
|
#
|
|
|
|
# additionally there are some wonky variable usages of variables
|
|
|
|
# that are never defined, for which we patch in defvar statements.
|
2022-01-30 17:06:58 +01:00
|
|
|
(runCommand "precomputed-tables.lisp" { } ''
|
2020-07-24 19:36:40 +02:00
|
|
|
substitute ${src}/src/precomputed-tables.lisp precomputed-tables.lisp \
|
|
|
|
--replace "(asdf:system-source-directory (asdf:find-system 'uax-15 nil))" \
|
|
|
|
'"${src}/"'
|
|
|
|
|
|
|
|
sed -i precomputed-tables.lisp \
|
2021-12-14 22:32:27 +01:00
|
|
|
-e '10i(defvar *canonical-decomp-map*)' \
|
|
|
|
-e '10i(defvar *compatible-decomp-map*)' \
|
|
|
|
-e '10i(defvar *canonical-combining-class*)'
|
2020-07-24 19:36:40 +02:00
|
|
|
|
|
|
|
cp precomputed-tables.lisp $out
|
|
|
|
'')
|
2021-12-14 22:32:27 +01:00
|
|
|
|
2020-07-24 19:36:40 +02:00
|
|
|
"${src}/src/normalize-backend.lisp"
|
|
|
|
"${src}/src/uax-15.lisp"
|
|
|
|
];
|
|
|
|
}
|