mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 15:22:18 -05:00
gnu: Add guile-fslib.
* gnu/packages/guile-xyz.scm (guile-fslib): New variable.
This commit is contained in:
parent
ce3d05cc08
commit
767c3df815
1 changed files with 25 additions and 0 deletions
|
@ -36,6 +36,7 @@
|
|||
;;; Copyright © 2021 Bonface Munyoki Kilyungi <me@bonfacemunyoki.com>
|
||||
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
||||
;;; Copyright © 2021 Leo Le Bouter <lle-bout@zaclys.net>
|
||||
;;; Copyright © 2021 Zelphir Kaltstahl <zelphirkaltstahl@posteo.de>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -4665,3 +4666,27 @@ (define-public guile-quickcheck
|
|||
which functions should satisfy, as Scheme code and then check whether they hold
|
||||
in a large number of randomly generated test cases.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public guile-fslib
|
||||
(package
|
||||
(name "guile-fslib")
|
||||
(version "0.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://notabug.org/ZelphirKaltstahl/guile-fslib/")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"118d84p443w7hrslv8hjyhgws631ia08mggiyklkmk0b9plfdsvz"))))
|
||||
(build-system guile-build-system)
|
||||
(inputs
|
||||
`(("guile" ,guile-3.0)))
|
||||
(home-page "https://notabug.org/ZelphirKaltstahl/guile-fslib")
|
||||
(synopsis "Helper functions for working with locations in file systems")
|
||||
(description
|
||||
"This package contains helper functions for working with file system
|
||||
locations.")
|
||||
(license license:agpl3+)))
|
||||
|
|
Loading…
Reference in a new issue