summaryrefslogtreecommitdiff
path: root/gnu/packages/textutils.scm
diff options
context:
space:
mode:
authorgnuphilic <>2025-10-09 23:57:09 +0300
committerEkaitz Zarraga <ekaitz@elenq.tech>2025-10-14 15:48:37 +0200
commit9abcf2b9c69c751bd8a40ee1cb9d7984d3d5b5ff (patch)
tree40d236937afe0b0817065200762e3e497cc1a721 /gnu/packages/textutils.scm
parent783b58e1816b469a32b11b7f026e78e876951107 (diff)
gnu: add utfcpp-2
* gnu/packages/textutils.scm (utfcpp-2): New variable Change-Id: I3a682b22424794349a00c773aeba2ebc9343bf44 Signed-off-by: Ekaitz Zarraga <ekaitz@elenq.tech>
Diffstat (limited to 'gnu/packages/textutils.scm')
-rw-r--r--gnu/packages/textutils.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index 7b290f048bb..715b9c4f986 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -847,6 +847,35 @@ spreadsheets and outputs it in comma-separated-value format, and
847in a portable way.") 847in a portable way.")
848 (license license:boost1.0))) 848 (license license:boost1.0)))
849 849
850(define-public utfcpp-2
851 (package
852 (inherit utfcpp)
853 (name (package-name utfcpp))
854 (version "2.3.5")
855 (source (origin
856 (method git-fetch)
857 (uri (git-reference
858 (url "https://github.com/nemtrif/utfcpp")
859 (commit (string-append "v" version))))
860 (file-name (git-file-name name version))
861 (sha256
862 (base32
863 "1gr98d826z6wa58r1s5i7rz7q2x3r31v7zj0pjjlrc7gfxwklr4s"))))
864 (build-system cmake-build-system)
865 (arguments
866 `(#:out-of-source? #f
867 #:phases
868 (modify-phases %standard-phases
869 (replace 'install ; no install target
870 (lambda* (#:key outputs #:allow-other-keys)
871 (let* ((out (assoc-ref outputs "out"))
872 (include (string-append out "/include"))
873 (doc (string-append out "/share/doc/" ,name)))
874 (copy-recursively "source" include)
875 (install-file "README.md" doc)))))))
876 (native-inputs '())))
877
878
850(define-public dbacl 879(define-public dbacl
851 (package 880 (package
852 (name "dbacl") 881 (name "dbacl")