Archived
1
0
Fork 0

gnu: Add libcharon.

* gnu/packages/engineering.scm (libcharon): New variable.

Co-authored-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Malte Frank Gerdes 2022-04-07 17:21:13 +02:00 committed by Guillaume Le Vaillant
parent f14d43b367
commit 79b50d5d5b
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -3430,3 +3430,27 @@ compiled translations. Prebuilt Firmware files are removed.")
related desktop applications using PyQt5. It belongs to the Cura project related desktop applications using PyQt5. It belongs to the Cura project
from Ultimaker.") from Ultimaker.")
(license license:lgpl3+))) (license license:lgpl3+)))
(define-public libcharon
(package
(name "libcharon")
(version "4.13.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Ultimaker/libCharon")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0ibv15y7lfxs09k6rbc3kiaz13gq3v9vqxrk20rqp6bdclk3izff"))))
(build-system cmake-build-system)
(native-inputs
(list python-pytest))
(inputs
(list python))
(home-page "https://github.com/Ultimaker/libCharon")
(synopsis "File metadata and streaming library")
(description "LibCharon is a Python file metadata and streaming library. It
belongs to the Cura project from Ultimaker.")
(license license:lgpl3+)))