gnu: Add guile-bzip2.

* gnu/packages/guile.scm (guile-bzip2): New package.

Change-Id: I450395f6699d4b622c8043c17a197c799255a9bb
This commit is contained in:
Timothy Sample 2024-01-25 11:51:04 -06:00
parent ffc7650c11
commit 94c0eeea49
No known key found for this signature in database
GPG Key ID: 2AC6A5EC1C357C59
1 changed files with 23 additions and 1 deletions

View File

@ -17,7 +17,7 @@
;;; Copyright © 2019 Taylan Kammer <taylan.kammer@gmail.com>
;;; Copyright © 2020-2023 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
;;; Copyright © 2021 Timothy Sample <samplet@ngyro.com>
;;; Copyright © 2021, 2024 Timothy Sample <samplet@ngyro.com>
;;;
;;; This file is part of GNU Guix.
;;;
@ -999,4 +999,26 @@ library. It exposes an interface similar to other Guile compression
libraries, like Guile-zlib.")
(license license:gpl3+)))
(define-public guile-bzip2
(package
(name "guile-bzip2")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://files.ngyro.com/guile-bzip2/guile-bzip2-"
version ".tar.gz"))
(sha256
(base32 "1qnxk5fzg8m9ik1ckhjvi22kkhd810mrg8jzxiizhk920b69wbdh"))))
(build-system gnu-build-system)
(native-inputs (list guile-3.0 guile-bytestructures pkg-config))
(inputs (list guile-3.0 bzip2))
(propagated-inputs (list guile-bytestructures))
(home-page "https://ngyro.com/software/guile-bzip2.html")
(synopsis "Guile bindings for libbzip2")
(description "Guile-bzip2 is a Guile wrapper for the libbzip2
library. It exposes an interface similar to other Guile compression
libraries, like Guile-zlib.")
(license license:gpl3+)))
;;; guile.scm ends here