mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add guile-bzip2.
* gnu/packages/guile.scm (guile-bzip2): New package. Change-Id: I450395f6699d4b622c8043c17a197c799255a9bb
This commit is contained in:
parent
ffc7650c11
commit
94c0eeea49
1 changed files with 23 additions and 1 deletions
|
@ -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 @@ (define-public guile-lzma
|
|||
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
|
||||
|
|
Loading…
Reference in a new issue