mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
9e860e41eb
From https://github.com/Uthar/nix-cl Commit ebeb76057abf01029067f1ebe0ae6fae90848bfe
29 lines
658 B
Common Lisp
29 lines
658 B
Common Lisp
(defsystem org.lispbuilds.nix
|
|
:class :package-inferred-system
|
|
:description "Utilities for importing ASDF systems into Nix"
|
|
:depends-on (
|
|
:alexandria
|
|
:str
|
|
:cl-ppcre
|
|
:sqlite
|
|
:dexador
|
|
:arrow-macros
|
|
:com.inuoe.jzon
|
|
:org.lispbuilds.nix/api
|
|
:org.lispbuilds.nix/repository/quicklisp
|
|
:org.lispbuilds.nix/database/sqlite
|
|
))
|
|
|
|
|
|
(register-system-packages
|
|
"cl-ppcre"
|
|
'(:ppcre))
|
|
|
|
(register-system-packages
|
|
"dexador"
|
|
'(:dex))
|
|
|
|
(register-system-packages
|
|
"alexandria"
|
|
'(:alexandria :alexandria-2))
|