all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 39991c580739642a7f7ffb4a7e0d77ca8b0504a6 2536 bytes (raw)
name: gnu/packages/scheme-xyz.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
 
(define-module (gnu packages scheme-xyz)
  #:use-module (guix packages)
  #:use-module (guix build-system gerbil)
  #:use-module (gnu packages scheme)
  #:use-module (gnu packages xml)
  #:use-module (guix git-download)
  #:use-module ((guix licenses) #:prefix license:))

(define-public gerbil-srfi-54
  (package
    (name "gerbil-srfi-54")
    (version "git")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/hckiang/srfi-54")
             (commit "master")))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0k1ddfhvbmf9njxm1ybs61n9kpzjvha2j63mf756r7b3x5rk51b0"))))
    (build-system gerbil-build-system)
    (synopsis "SRFI-54 for Gerbil Scheme")
    (description "This SRFI introduces the CAT procedure that converts any object
to a string.  It takes one object as the first argument and accepts a variable
number of optional arguments, unlike the procedure called FORMAT.")
    (home-page "https://github.com/hckiang/srfi-54")
    (license license:lgpl3)))

(define-public gerbil-denatting
  (package
    (name "gerbil-denatting")
    (version "0.0.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://gitlab.com/edouardklein/denatting.git")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0m8nlqjs1bqhs7cqdf9ddj9hnm9xfmngzd5iawc0fz3qamsw1wyp"))))
    (propagated-inputs
     `(("gerbil" ,gerbil)
       ("xlsxio" ,xlsxio)
       ("gerbil-srfi-54" ,gerbil-srfi-54)))
    (build-system gerbil-build-system)
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (add-after 'wrap 'rewrap ;Allow denat to find xlsxio's shared object
           (lambda* (#:key inputs outputs #:allow-other-keys)
             (let ((denat (string-append (assoc-ref outputs "out") "/bin/denat"))
                   (xlsxio (string-append (assoc-ref inputs "xlsxio") "/lib")))
               (wrap-program denat `("LD_LIBRARY_PATH" = (,xlsxio)))))))))
    (synopsis "Find who is hiding behind a mobile IPv4")
    (description "Denatting is a Europol-backed project whose goal is to allow
investigators in participating countries to discover which Internet Service Provider
(ISP) client is responsible for a set of network events as reported by content
providers within the legal framework of a judicial investigation.")
    (home-page "https://gitlab.com/edouardklein/denatting")
    (license license:agpl3+)))

debug log:

solving 39991c5807 ...
found 39991c5807 in https://yhetil.org/guix/87r1ub18iu.fsf@alice.lan/
found 8b553848ee in https://yhetil.org/guix/87tuz718jz.fsf@alice.lan/

applying [1/2] https://yhetil.org/guix/87tuz718jz.fsf@alice.lan/
diff --git a/gnu/packages/scheme-xyz.scm b/gnu/packages/scheme-xyz.scm
new file mode 100644
index 0000000000..8b553848ee


applying [2/2] https://yhetil.org/guix/87r1ub18iu.fsf@alice.lan/
diff --git a/gnu/packages/scheme-xyz.scm b/gnu/packages/scheme-xyz.scm
index 8b553848ee..39991c5807 100644

Checking patch gnu/packages/scheme-xyz.scm...
Applied patch gnu/packages/scheme-xyz.scm cleanly.
Checking patch gnu/packages/scheme-xyz.scm...
Applied patch gnu/packages/scheme-xyz.scm cleanly.

index at:
100644 39991c580739642a7f7ffb4a7e0d77ca8b0504a6	gnu/packages/scheme-xyz.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.