mirror of
https://github.com/vale981/lack
synced 2025-03-05 09:21:39 -05:00
13 lines
336 B
Text
13 lines
336 B
Text
![]() |
(in-package :cl-user)
|
||
|
(defpackage :lack-util-writer-stream-asd
|
||
|
(:use :cl :asdf))
|
||
|
(in-package :lack-util-writer-stream-asd)
|
||
|
|
||
|
(defsystem lack-util-writer-stream
|
||
|
:version "0.1"
|
||
|
:author "Eitaro Fukamachi"
|
||
|
:license "LLGPL"
|
||
|
:depends-on (:trivial-gray-streams
|
||
|
:babel)
|
||
|
:components ((:file "src/util/writer-stream")))
|