blob: 8a692cf125ad8e9b013fa4e2f72ba380dfd8dc6e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ tpkgs ? (import (builtins.fetchGit "https://git.tazj.in/") {}), ... }:
let
src = builtins.fetchGit {
url = "https://github.com/fukamachi/prove.git";
rev = "5d71f02795b89e36f34e8c7d50e69b67ec6ca2de";
};
in tpkgs.nix.buildLisp.library {
name = "prove-asdf";
deps = [];
srcs = [
"${src}/src/output.lisp"
"${src}/src/asdf.lisp"
];
}
|