mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add srfi-64-driver.
* gnu/packages/guile-xyz.scm (srfi-64-driver): New variable.
This commit is contained in:
parent
b93a32977e
commit
f9ec89f444
1 changed files with 29 additions and 0 deletions
|
@ -22,6 +22,7 @@
|
|||
;;; Copyright © 2018 Eric Bavier <bavier@member.fsf.org>
|
||||
;;; Copyright © 2019 swedebugia <swedebugia@riseup.net>
|
||||
;;; Copyright © 2019 Amar Singh <nly@disroot.org>
|
||||
;;; Copyright © 2019 Timothy Sample <samplet@ngyro.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -2660,3 +2661,31 @@ (define-public guile-ffi-fftw
|
|||
;; TODO: This might actually be LGPLv3+
|
||||
;; See https://github.com/lloda/guile-ffi-fftw/issues/1
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public srfi-64-driver
|
||||
(package
|
||||
(name "srfi-64-driver")
|
||||
(version "0.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://files.ngyro.com/srfi-64-driver/"
|
||||
"srfi-64-driver-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"188b6mb7sjjg0a8zldikinglf40ky8mg8rwh5768gjmch6gkk3ph"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'build))))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("guile" ,guile-2.2)))
|
||||
(home-page "https://ngyro.com/software/srfi-64-driver.html")
|
||||
(synopsis "Automake test driver for SRFI 64 test suites")
|
||||
(description "This package provides an Automake test driver that can
|
||||
run SRFI 64 test suites. It gives Automake insight into the individual
|
||||
tests being run, resulting clearer and more specific output.")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue