diff options
author | Igor Goryachev <igor@goryachev.org> | 2024-07-02 09:55:07 +0300 |
---|---|---|
committer | Andrew Tropin <andrew@trop.in> | 2024-07-02 11:53:55 +0400 |
commit | 69620745faf181e2a2bf104a3aab1f51029f5873 (patch) | |
tree | 84a6fd8a63003b545fe5032b0782727b04d7ea6a /gnu/packages | |
parent | 1c113b7c42922d67026f9329cd9351c927f610b7 (diff) | |
download | guix-69620745faf181e2a2bf104a3aab1f51029f5873.tar.gz guix-69620745faf181e2a2bf104a3aab1f51029f5873.zip |
gnu: elixir-makeup: Update to 1.1.2, make reproducible.
* gnu/packages/elixir-xyz.scm (elixir-makeup): Update to 1.1.2, make reproducible.
Change-Id: I43fca3e4d1f6d2a5e678940416710c126b51a59b
Signed-off-by: Andrew Tropin <andrew@trop.in>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/elixir-xyz.scm | 36 |
1 files changed, 31 insertions, 5 deletions
diff --git a/gnu/packages/elixir-xyz.scm b/gnu/packages/elixir-xyz.scm index 69e3a53ff3..9f3601c427 100644 --- a/gnu/packages/elixir-xyz.scm +++ b/gnu/packages/elixir-xyz.scm @@ -24,6 +24,8 @@ #:use-module (gnu packages compression) #:use-module (gnu packages base) #:use-module (gnu packages) + #:use-module (guix build mix-build-system) + #:use-module (guix build utils) #:use-module (guix build-system gnu) #:use-module (guix build-system mix) #:use-module (guix download) @@ -56,20 +58,44 @@ for higher-level combinators through composition.") (define-public elixir-makeup (package (name "elixir-makeup") - (version "1.1.0") + (version "1.1.2") (source (origin (method url-fetch) (uri (hexpm-uri name version)) (sha256 - (base32 "19jpprryixi452jwhws3bbks6ki3wni9kgzah3srg22a3x8fsi8a")))) + (base32 "1b3civqrznn3dxqa3iybwbpgj8dj6f7q1zlgr8gd5jzvh5mmdqfc")))) (build-system mix-build-system) (propagated-inputs (list elixir-nimble-parsec)) - (arguments (list #:tests? #f)) ; no tests + (arguments + `(#:tests? #f ; no tests + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'make-reproducible + (lambda _ + (substitute* "lib/makeup/token/utils.ex" + (("@precedence Hierarchy.hierarchy_to_precedence\\(@hierarchy\\)") + "")) + (substitute* "lib/makeup/token/utils.ex" + (("@token_to_class_map Hierarchy.style_to_class_map\\(@hierarchy\\)") + "")) + (substitute* "lib/makeup/token/utils.ex" + (("@standard_token_types Map.keys\\(@token_to_class_map\\)") + "")) + (substitute* "lib/makeup/token/utils.ex" + (("@precedence") + "Hierarchy.hierarchy_to_precedence(@hierarchy)")) + (substitute* "lib/makeup/token/utils.ex" + (("@token_to_class_map") + "Hierarchy.style_to_class_map(@hierarchy)")) + (substitute* "lib/makeup/token/utils.ex" + (("@standard_token_types") + "Map.keys(token_to_class_map())"))))))) (synopsis "Syntax highlighter for source code") (description - "Makeup is a generic syntax highlighter in the style of Pygments suitable for use in code hosting, -forums, wikis or other applications that need to prettify source code.") + "Makeup is a generic syntax highlighter in the style of Pygments suitable +for use in code hosting, forums, wikis or other applications that need to prettify +source code.") (home-page "https://hexdocs.pm/makeup/") (license license:bsd-2))) |