mirror of
https://github.com/stumpwm/stumpwm-contrib.git
synced 2026-09-10 07:26:25 -04:00
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:
parent
8fbed038e2
commit
cfa8426e99
|
|
@ -1,5 +1,6 @@
|
|||
;;;; package.lisp
|
||||
|
||||
(defpackage #:passwd
|
||||
(:use #:cl :stumpwm-user ))
|
||||
(:use #:cl
|
||||
#:stumpwm)
|
||||
|
||||
|
|
|
|||
|
|
@ -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")))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue