2020-07-22 00:53:18 +02:00
|
|
|
{ depot, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "mmontone";
|
|
|
|
repo = "easy-routes";
|
|
|
|
rev = "dab613ff419a655036a00beecee026ab6e0ba430";
|
|
|
|
sha256 = "06lnipwc6mmg0v5gybcnr7wn5xmn5xfd1gs19vbima777245bfka";
|
|
|
|
};
|
|
|
|
|
2022-01-30 17:06:58 +01:00
|
|
|
in
|
|
|
|
depot.nix.buildLisp.library {
|
2020-07-22 00:53:18 +02:00
|
|
|
name = "easy-routes";
|
|
|
|
deps = with depot.third_party.lisp; [
|
|
|
|
hunchentoot
|
|
|
|
routes
|
|
|
|
];
|
|
|
|
|
|
|
|
srcs = map (f: src + ("/" + f)) [
|
|
|
|
"package.lisp"
|
|
|
|
"util.lisp"
|
|
|
|
"easy-routes.lisp"
|
|
|
|
"routes-map-printer.lisp"
|
|
|
|
];
|
|
|
|
|
2021-08-09 02:47:07 +02:00
|
|
|
brokenOn = [
|
|
|
|
"ecl" # dynamic cffi
|
|
|
|
];
|
2020-07-22 00:53:18 +02:00
|
|
|
}
|