tvl-depot/third_party/lisp/puri.nix

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

11 lines
186 B
Nix
Raw Normal View History

# Portable URI library
{ depot, pkgs, ... }:
let src = with pkgs; srcOnly lispPackages.puri;
in depot.nix.buildLisp.library {
name = "puri";
srcs = [
(src + "/src.lisp")
];
}