blob: f7146ba93f1f1e6136fd55a33c4ab4a4fecb0ac7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# Portable URI library
{ depot, pkgs, ... }:
let src = with pkgs; srcOnly lispPackages.puri;
in depot.nix.buildLisp.library {
name = "puri";
srcs = [
(src + "/src.lisp")
];
}
|