diff options
author | Timothy Sample <samplet@ngyro.com> | 2024-01-25 11:51:04 -0600 |
---|---|---|
committer | Timothy Sample <samplet@ngyro.com> | 2024-02-12 21:25:55 -0600 |
commit | 94c0eeea49b2a9c6ace3b77686dbd17091ce2f2d (patch) | |
tree | db402ce49edfeef9e5a329badb0899ca1132981b | |
parent | ffc7650c11fd7c4b9f7b4894f8e0a451e0e49063 (diff) | |
download | guix-94c0eeea49b2a9c6ace3b77686dbd17091ce2f2d.tar guix-94c0eeea49b2a9c6ace3b77686dbd17091ce2f2d.tar.gz |
gnu: Add guile-bzip2.
* gnu/packages/guile.scm (guile-bzip2): New package.
Change-Id: I450395f6699d4b622c8043c17a197c799255a9bb
-rw-r--r-- | gnu/packages/guile.scm | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index a64d8dc2c5..817ec974bc 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -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 |