Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
{ 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"
}