2020-01-21 03:06:11 +01:00
|
|
|
# Portable URI library
|
2020-02-21 13:47:29 +01:00
|
|
|
{ depot, ... }:
|
2020-01-21 03:06:11 +01:00
|
|
|
|
|
|
|
let src = builtins.fetchGit {
|
|
|
|
url = "http://git.kpe.io/puri.git";
|
|
|
|
rev = "ef5afb9e5286c8e952d4344f019c1a636a717b97";
|
|
|
|
};
|
2020-02-21 13:47:29 +01:00
|
|
|
in depot.nix.buildLisp.library {
|
2020-01-21 03:06:11 +01:00
|
|
|
name = "puri";
|
|
|
|
srcs = [
|
|
|
|
(src + "/src.lisp")
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
|