blob: d594ff1a1cf7de5ac63cec5f9fbfdfbe280bb12c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ depot, pkgs, ... }:
let src = with pkgs; srcOnly lispPackages.physical-quantities;
in depot.nix.buildLisp.library {
name = "physical-quantities";
deps = with depot.third_party.lisp; [
parseq
];
srcs = map (f: src + ("/" + f)) [
"package.lisp"
"utils.lisp"
"conditions.lisp"
"unit-factor.lisp"
"unit-database.lisp"
"units.lisp"
"quantity.lisp"
"numeric.lisp"
"parse-rules.lisp"
"read-macro.lisp"
"si-units.lisp"
];
}
|