Ensure PASSWD contrib loads

The package definition should USE the package STUMPWM not
STUMPWM-USER. STUMPWM-USER is designed to run exploratory code that uses
symbols from the STUMPWM package, the package itself exports no symbols.
This commit is contained in:
Javier Olaechea 2018-05-01 22:30:04 -05:00
parent 8fbed038e2
commit cfa8426e99
2 changed files with 5 additions and 3 deletions

View file

@ -1,5 +1,6 @@
;;;; package.lisp
(defpackage #:passwd
(:use #:cl :stumpwm-user ))
(:use #:cl
#:stumpwm)

View file

@ -1,11 +1,12 @@
;;;; passwd.asd
(asdf:defsystem #:passwd
(asdf:defsystem "passwd"
:serial t
:description "A simple password utility based on ironclad."
:author "Anonymous"
:license "GPLv3"
:depends-on (#:stumpwm #:ironclad)
:depends-on ("stumpwm"
"ironclad")
:components ((:file "package")
(:file "passwd")))