Add lparallel

This commit is contained in:
Michael Raskin 2019-02-28 22:14:46 +01:00
parent 1aa13609b6
commit 1cfa5a72e2
2 changed files with 11 additions and 0 deletions

View File

@ -95,6 +95,7 @@ let-plus
lev
lisp-namespace
local-time
lparallel
lquery
marshal
misc-extensions

View File

@ -1224,6 +1224,16 @@ let quicklisp-to-nix-packages = rec {
}));
"lparallel" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."lparallel" or (x: {}))
(import ./quicklisp-to-nix-output/lparallel.nix {
inherit fetchurl;
"alexandria" = quicklisp-to-nix-packages."alexandria";
"bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads";
}));
"local-time" = buildLispPackage
((f: x: (x // (f x)))
(qlOverrides."local-time" or (x: {}))