about summary refs log tree commit diff
path: root/third_party/lisp/parse-float.nix
blob: e90824108ed1d2069ffc7f58b83950aec0285f98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ depot, pkgs, ... }:

let src = with pkgs; srcOnly lispPackages.parse-float;
in depot.nix.buildLisp.library {
  name = "parse-float";

  deps = with depot.third_party.lisp; [
    alexandria
  ];

  srcs = map (f: src + ("/" + f)) [
    "package.lisp"
    "parse-float.lisp"
  ];
}