diff options
author | Andy Patterson <ajpatter@uwaterloo.ca> | 2016-10-07 04:07:57 -0400 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2016-10-08 21:20:36 +0800 |
commit | 96784438f5f9ae933b466db921301ae8e6b97497 (patch) | |
tree | 4a1536b7afc27d90596484c657e49dc5bf7f690f /gnu/packages | |
parent | e3e171ee8163997d1505cf9cf4f932070ddfd0e9 (diff) | |
download | guix-96784438f5f9ae933b466db921301ae8e6b97497.tar guix-96784438f5f9ae933b466db921301ae8e6b97497.tar.gz |
gnu: Add sbcl-stumpwm-with-slynk.
* gnu/packages/lisp.scm (sbcl-stumpwm+slynk): New variable.
Signed-off-by: 宋文武 <iyzsong@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/lisp.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index f8e9eed5b9..d0837606f3 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -1041,3 +1041,34 @@ history.") (((names . paths) ...) (union-build (assoc-ref %outputs "out") paths)))))))) + +(define-public sbcl-stumpwm+slynk + (package + (inherit sbcl-stumpwm) + (name "sbcl-stumpwm-with-slynk") + (outputs '("out")) + (native-inputs + `(("stumpwm" ,sbcl-stumpwm) + ("slynk" ,sbcl-slynk))) + (arguments + (substitute-keyword-arguments (package-arguments sbcl-stumpwm) + ((#:phases phases) + `(modify-phases ,phases + (replace 'build-program + (lambda* (#:key lisp inputs outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (program (string-append out "/bin/stumpwm"))) + (build-program lisp program + #:inputs inputs + #:entry-program '((stumpwm:stumpwm) 0) + #:dependencies '("stumpwm" + ,@slynk-systems)) + ;; Remove unneeded file. + (delete-file (string-append out "/bin/stumpwm-exec.fasl")) + #t))) + (delete 'copy-source) + (delete 'build) + (delete 'check) + (delete 'link-dependencies) + (delete 'cleanup) + (delete 'create-symlinks))))))) |