guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#47901] [PATCH] Prototype for guix import quicklisp


From: Sharlatan Hellseher
Subject: [bug#47901] [PATCH] Prototype for guix import quicklisp
Date: Mon, 19 Apr 2021 21:19:51 +0000

Hi Guix team!

This script could be a quick prototype solution for anyone who start
packing Common Lisp system distributed by Quicklisp.

I know it's better to implement it in Guile to be available in Guix
directly - it could be a starting point for that process.

Time to learn Scheme! (for me ;-)

--- EXAMPLE ---
./etc/guix-import-quicklisp.sh cl-gamepad t
[1618866903.257]: [ PASS ] verification of required commands completed
___ Quicklisp ___
fetch-method: git
guix-package: not-availalbe
project-dependencies: cffi documentation-utils trivial-features
project-systems: cl-gamepad
project-url: https://github.com/Shirakumo/cl-gamepad.git
system-project: cl-gamepad
system: cl-gamepad
[1618866906.296]: [ INFO ]  Fetch
https://github.com/Shirakumo/cl-gamepad.git with git
(define-public sbcl-cl-gamepad
  (let ((commit "ed75ed3ea387957912b90efd82340ba3064cab5b")
        (revision "1"))
    (package
      (name "sbcl-cl-gamepad")
      (version (git-version "0.0.0" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/Shirakumo/cl-gamepad.git";)
               (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32
           "0saww9ar1ifd9scg0ml7gqy3wsmidrri61kcd1a3n57vzd8dch7m"))))
      (build-system asdf-build-system/sbcl)
      (inputs
       `(("cffi" ,sbcl-cffi)
("documentation-utils" ,sbcl-documentation-utils)
("trivial-features" ,sbcl-trivial-features)))
      (home-page "https://github.com/Shirakumo/cl-gamepad.git";)
      (synopsis "TBC")
      (description
"TBC")
      (license #f))))
___ Quicklisp ___
guix-package: available
system-project: cffi
system: cffi
___ Quicklisp ___
guix-package: available
system-project: documentation-utils
system: documentation-utils
___ Quicklisp ___
guix-package: available
system-project: trivial-features
--- EXAMPLE ---

--
… наш разум - превосходная объяснительная машина которая способна
найти смысл почти в чем угодно, истолковать любой феномен, но
совершенно не в состоянии принять мысль о непредсказуемости.

Attachment: 0001-Add-prototype-for-guix-import-quicklisp.patch
Description: Source code patch


reply via email to

[Prev in Thread] Current Thread [Next in Thread]