about summary refs log tree commit diff
path: root/third_party/lisp/puri.nix
blob: 51728c7646f3d2e354d13f74ff28fbdea7288ea6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Portable URI library
{ depot, ... }:

let src = builtins.fetchGit {
  url = "http://git.kpe.io/puri.git";
  rev = "ef5afb9e5286c8e952d4344f019c1a636a717b97";
};
in depot.nix.buildLisp.library {
  name = "puri";
  srcs = [
    (src + "/src.lisp")
  ];
}