diff options
| author | Mathieu Othacehe <othacehe@gnu.org> | 2021-02-25 11:27:33 +0100 |
|---|---|---|
| committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-02-25 11:28:29 +0100 |
| commit | 73303067c77becb861d8e288bb115149ac6999cd (patch) | |
| tree | c57c2a2e2970e59e3ff759ecad92d03563a7288f /gnu | |
| parent | c1da9829f8b6d7c130ff3cc04ef7b15a5bb54825 (diff) | |
gnu: guile-simple-zmq: Update to 0.0.0-8.e944617.
* gnu/packages/guile-xyz.scm (guile-simple-zmq): Update to 0.0.0-8.e944617.
[build-system]: Switch to gnu-build-system.
[arguments]: Remove the set-libzmq-file-name phase.
[inputs]: Add autoconf, automake and pkg-config.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/guile-xyz.scm | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index ce5aad8ec7e..c75fc4b4acd 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm | |||
| @@ -1001,8 +1001,8 @@ convenient nested tree operations.") | |||
| 1001 | (license license:gpl3+))) | 1001 | (license license:gpl3+))) |
| 1002 | 1002 | ||
| 1003 | (define-public guile-simple-zmq | 1003 | (define-public guile-simple-zmq |
| 1004 | (let ((commit "c8b1fa09e08e12207cf84023fc3d569936c886d7") | 1004 | (let ((commit "e9446173280117e98ab4208e2aa5273128650e19") |
| 1005 | (revision "7")) | 1005 | (revision "8")) |
| 1006 | (package | 1006 | (package |
| 1007 | (name "guile-simple-zmq") | 1007 | (name "guile-simple-zmq") |
| 1008 | (version (git-version "0.0.0" revision commit)) | 1008 | (version (git-version "0.0.0" revision commit)) |
| @@ -1014,23 +1014,20 @@ convenient nested tree operations.") | |||
| 1014 | (commit commit))) | 1014 | (commit commit))) |
| 1015 | (sha256 | 1015 | (sha256 |
| 1016 | (base32 | 1016 | (base32 |
| 1017 | "0ilyviny3c2am20d192cqhq7rsdy3jvbvmvqqg7qv9myrcwqg26y")) | 1017 | "1nhlp5kl1095k1irvv0kgdbc7lp5qki3d3wg9rla6f7822hkmrzw")) |
| 1018 | (file-name (git-file-name name version)))) | 1018 | (file-name (git-file-name name version)))) |
| 1019 | (build-system guile-build-system) | 1019 | (build-system gnu-build-system) |
| 1020 | (arguments | 1020 | (arguments |
| 1021 | `(#:source-directory "src" | 1021 | '(#:make-flags |
| 1022 | #:phases (modify-phases %standard-phases | 1022 | '("GUILE_AUTO_COMPILE=0"))) ;to prevent guild warnings |
| 1023 | (add-after 'unpack 'set-libzmq-file-name | 1023 | |
| 1024 | (lambda* (#:key inputs #:allow-other-keys) | ||
| 1025 | (substitute* "src/simple-zmq.scm" | ||
| 1026 | (("\\(dynamic-link \"libzmq\"\\)") | ||
| 1027 | (format #f "(dynamic-link \"~a/lib/libzmq.so\")" | ||
| 1028 | (assoc-ref inputs "zeromq")))) | ||
| 1029 | #t))))) | ||
| 1030 | (native-inputs | 1024 | (native-inputs |
| 1031 | `(("guile" ,guile-3.0))) | 1025 | `(("guile" ,guile-3.0))) |
| 1032 | (inputs | 1026 | (inputs |
| 1033 | `(("zeromq" ,zeromq))) | 1027 | `(("autoconf" ,autoconf) |
| 1028 | ("automake" ,automake) | ||
| 1029 | ("pkg-config" ,pkg-config) | ||
| 1030 | ("zeromq" ,zeromq))) | ||
| 1034 | (home-page "https://github.com/jerry40/guile-simple-zmq") | 1031 | (home-page "https://github.com/jerry40/guile-simple-zmq") |
| 1035 | (synopsis "Guile wrapper over ZeroMQ library") | 1032 | (synopsis "Guile wrapper over ZeroMQ library") |
| 1036 | (description | 1033 | (description |
