blob: 3d91f81209ef4c4847b8eb867eb8dff2c87cb980 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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")
];
}
|