diff options
author | Vincent Ambo <Vincent Ambo> | 2020-01-09T01·13+0000 |
---|---|---|
committer | Vincent Ambo <Vincent Ambo> | 2020-01-09T01·13+0000 |
commit | 815574ad5f0e19939a0afc403b222145d5b01b67 (patch) | |
tree | 5b73c88f0c4fa2968bded215845424d4f4050e41 /third_party/lisp | |
parent | 67170024d2b25d6eb3a5b3c6c3abe42aebf535da (diff) |
feat(third_party/lisp): Add derivation for trivial-gray-streams r/360
Diffstat (limited to 'third_party/lisp')
-rw-r--r-- | third_party/lisp/trivial-gray-streams.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/lisp/trivial-gray-streams.nix b/third_party/lisp/trivial-gray-streams.nix new file mode 100644 index 000000000000..3d91f81209ef --- /dev/null +++ b/third_party/lisp/trivial-gray-streams.nix @@ -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") + ]; +} + + |