tvl-depot/third_party/lisp/parse-number.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
204 B
Nix
Raw Normal View History

{ depot, pkgs, ... }:
let src = with pkgs; srcOnly lispPackages.parse-number;
in depot.nix.buildLisp.library {
name = "parse-number";
srcs = map (f: src + ("/" + f)) [
"parse-number.lisp"
];
}