unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 0c61454280d31a4dfbe5457bf9f2589c4eae600e 3156 bytes (raw)
name: gnu/packages/erlang-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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2023 Pierre-Henry Fröhring <phfrohring@deeplinks.com>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages erlang-xyz)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (gnu packages base)
  #:use-module (gnu packages)
  #:use-module (guix build-system rebar)
  #:use-module (guix download)
  #:use-module (guix gexp)
  #:use-module (guix git-download)
  #:use-module (guix hg-download)
  #:use-module (guix packages)
  #:use-module (guix utils)
  #:use-module (srfi srfi-1)
  #:use-module (guix git-download)
  #:use-module (gnu packages version-control)
  #:use-module (srfi srfi-26))

(define-public erlang-goldrush
  (package
    (name "erlang-goldrush")
    (version "0.1.9")
    (source
     (origin
       (method url-fetch)
       (uri (hexpm-uri name version))
       (sha256
        (base32 "1ssck5yr7rnrfwzm55pbyi1scgs1sl1xim75h5sj5czwrwl43jwr"))))
    (build-system rebar-build-system)
    (synopsis "Erlang event stream processor")
    (description "Erlang event stream processor")
    (home-page "https://hex.pm/packages/goldrush")
    (license license:isc)))

(define-public erlang-lager
  (package
    (name "erlang-lager")
    (version "3.9.2")
    (source
     (origin
       (method url-fetch)
       (uri (hexpm-uri name version))
       (sha256
        (base32 "0a0c6kvc2jman62vrx2l3nx6xqn8s5l1glvf2mk7xjx8hyg4v43z"))))
    (build-system rebar-build-system)
    ;; XXX: tests fail.
    (arguments (list #:tests? #f))
    (propagated-inputs (list erlang-goldrush))
    (synopsis "Erlang logging framework")
    (description "Erlang logging framework")
    (home-page "https://hexdocs.pm/lager/")
    (license license:asl2.0)))

(define-public erlang-unicode-util-compat
  (package
    (name "erlang-unicode-util-compat")
    (version "0.7.0")
    (source
     (origin
       (method url-fetch)
       (uri (hexpm-uri name version))
       (sha256
        (base32 "08952lw8cjdw8w171lv8wqbrxc4rcmb3jhkrdb7n06gngpbfdvi5"))))
    (build-system rebar-build-system)
    (synopsis "Unicode compatibility library for Erlang < 20")
    (description "Unicode compatibility library for Erlang < 20.")
    (home-page "https://hex.pm/packages/unicode_util_compat")
    (license license:asl2.0)))

;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar
;;; functionality or similar names.
;;;

debug log:

solving 0c614542 ...
found 0c614542 in https://yhetil.org/guix-patches/88315e12fd0e624d5f41f92fb8f334f4f5332ff0.1699434044.git.phfrohring@deeplinks.com/
found 4ed8099f in https://yhetil.org/guix-patches/a97b7b5d5fb4ea5560816c1937466d1379ede6ba.1699434044.git.phfrohring@deeplinks.com/
found 082af121 in https://yhetil.org/guix-patches/a93213f233d9d2f4106a40629cc5b7a3b7f23297.1699434044.git.phfrohring@deeplinks.com/

applying [1/3] https://yhetil.org/guix-patches/a93213f233d9d2f4106a40629cc5b7a3b7f23297.1699434044.git.phfrohring@deeplinks.com/
diff --git a/gnu/packages/erlang-xyz.scm b/gnu/packages/erlang-xyz.scm
new file mode 100644
index 00000000..082af121


applying [2/3] https://yhetil.org/guix-patches/a97b7b5d5fb4ea5560816c1937466d1379ede6ba.1699434044.git.phfrohring@deeplinks.com/
diff --git a/gnu/packages/erlang-xyz.scm b/gnu/packages/erlang-xyz.scm
index 082af121..4ed8099f 100644


applying [3/3] https://yhetil.org/guix-patches/88315e12fd0e624d5f41f92fb8f334f4f5332ff0.1699434044.git.phfrohring@deeplinks.com/
diff --git a/gnu/packages/erlang-xyz.scm b/gnu/packages/erlang-xyz.scm
index 4ed8099f..0c614542 100644

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

index at:
100644 0c61454280d31a4dfbe5457bf9f2589c4eae600e	gnu/packages/erlang-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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).