all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob eda382af72c3f4123d8c43aa62148cd884a6b0aa 723 bytes (raw)
name: website/manifest.scm 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 
(use-modules (guix packages)
             ((gnu packages package-management) #:select (guix))
             ((gnu packages guile-xyz)          #:select (haunt))
             (srfi srfi-1))

(define the-good-guile
  (car (assoc-ref (package-native-inputs guix) "guile")))

(define haunt-the-ghost
  (package
    (inherit haunt)
    (name "haunt-for-guix-website")
    (inputs
     `(("guile" ,the-good-guile)
       ,@(alist-delete "guile" (package-inputs haunt))))))

(packages->manifest
 (append
  ;; Guile needs to be compatible
  (list
   guix
   the-good-guile
   haunt-the-ghost)

  ;; Other packages
  (map specification->package
       (list
        "glibc-locales"
        "git"
        "guile-syntax-highlight"))))

debug log:

solving eda382a ...
found eda382a in https://yhetil.org/guix/20201018000106.30868-1-zimon.toutoune@gmail.com/

applying [1/1] https://yhetil.org/guix/20201018000106.30868-1-zimon.toutoune@gmail.com/
diff --git a/website/manifest.scm b/website/manifest.scm
new file mode 100644
index 0000000..eda382a

Checking patch website/manifest.scm...
Applied patch website/manifest.scm cleanly.

index at:
100644 eda382af72c3f4123d8c43aa62148cd884a6b0aa	website/manifest.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.