feat(third_party/lisp): Add derivation for trivial-gray-streams
This commit is contained in:
parent
67170024d2
commit
815574ad5f
1 changed files with 16 additions and 0 deletions
16
third_party/lisp/trivial-gray-streams.nix
vendored
Normal file
16
third_party/lisp/trivial-gray-streams.nix
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
# Portability library for CL gray streams.
|
||||
{ pkgs, ... }:
|
||||
|
||||
let src = builtins.fetchGit {
|
||||
url = "https://github.com/trivial-gray-streams/trivial-gray-streams.git";
|
||||
rev = "ebd59b1afed03b9dc8544320f8f432fdf92ab010";
|
||||
};
|
||||
in pkgs.nix.buildLisp.library {
|
||||
name = "trivial-gray-streams";
|
||||
srcs = [
|
||||
(src + "/package.lisp")
|
||||
(src + "/streams.lisp")
|
||||
];
|
||||
}
|
||||
|
||||
|
Loading…
Reference in a new issue