mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add idris-bifunctors.
* gnu/packages/idris.scm (idris-bifunctors): New variable.
This commit is contained in:
parent
4e17fff386
commit
5a16d828b3
1 changed files with 24 additions and 0 deletions
|
@ -204,3 +204,27 @@ (define-public idris-wl-pprint
|
|||
paper A Prettier Printer and on Daan Leijen's extensions in the Haskell
|
||||
wl-pprint library.")
|
||||
(license license:bsd-2))))
|
||||
|
||||
(define-public idris-bifunctors
|
||||
(let ((commit "53d06a6ccfe70c49c9ae8c8a4135981dd2173202"))
|
||||
(package
|
||||
(name "idris-bifunctors")
|
||||
(version (git-version "0.1" "1" commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/HuwCampbell/Idris-Bifunctors")
|
||||
(commit commit)))
|
||||
(file-name (string-append name "-" version "-checkout"))
|
||||
(sha256
|
||||
(base32
|
||||
"02vbsd3rmgnj0l1qq787709qcxjbr9890cbad4ykn27f77jk81h4"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("idris" ,idris)))
|
||||
(arguments (idris-default-arguments name))
|
||||
(home-page "https://github.com/HuwCampbell/Idris-Bifunctors")
|
||||
(synopsis "Bifunctor library")
|
||||
(description "This is a bifunctor library for Idris based off the
|
||||
excellent Haskell Bifunctors package from Edward Kmett.")
|
||||
(license license:bsd-3))))
|
||||
|
|
Loading…
Reference in a new issue