me
/
guix
Archived
1
0
Fork 0

gnu: Add openfpgaloader.

* gnu/packages/fpga.scm (openfpgaloader): New variable.
master
Danny Milosavljevic 2022-09-16 13:05:25 +02:00
parent eb9a39c1b7
commit 3ba8c2b507
No known key found for this signature in database
GPG Key ID: E71A35542C30BAA5
1 changed files with 28 additions and 1 deletions

View File

@ -58,7 +58,8 @@
#:use-module (gnu packages qt) #:use-module (gnu packages qt)
#:use-module (gnu packages boost) #:use-module (gnu packages boost)
#:use-module (gnu packages algebra) #:use-module (gnu packages algebra)
#:use-module (gnu packages libftdi)) #:use-module (gnu packages libftdi)
#:use-module (gnu packages libusb))
(define-public abc (define-public abc
(let ((commit "5ae4b975c49c") (let ((commit "5ae4b975c49c")
@ -584,3 +585,29 @@ libraries, optionally encrypted, into other simulators.")
hardware designs in Verilog.") hardware designs in Verilog.")
(home-page "https://zipcpu.com/") (home-page "https://zipcpu.com/")
(license license:lgpl3+)))) (license license:lgpl3+))))
(define-public openfpgaloader
(package
(name "openfpgaloader")
(version "0.9.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/trabucayre/openFPGALoader.git")
(commit (string-append "v" version))))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"1v3bwzhsrnsn304cqhd5azn68cl847qv8w8cb8bl7372jiqz5wqq"))))
(build-system cmake-build-system)
(native-inputs
(list pkg-config))
(inputs
(list libftdi libusb hidapi zlib))
(arguments
`(#:tests? #f)) ; No tests exist
(synopsis "Utility for programming FPGA")
(description "This package provides a program to transfer a bitstream
to an FPGA.")
(home-page "https://f4pga.org/")
(license license:asl2.0)))