;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 Manolis Fragkiskos Ragkousis ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages libftdi) #:use-module (guix licenses) #:use-module (guix download) #:use-module (guix packages) #:use-module (gnu packages) #:use-module (gnu packages libusb) #:use-module (guix build-system cmake)) (define-public libftdi (package (name "libftdi") (version "1.1") (source (origin (method url-fetch) (uri (string-append "http://www.intra2net.com/en/developer/libftdi/download/libftdi1-" version ".tar.bz2")) (sha256 (base32 "088yh8pxd6q53ssqndydcw1dkq51cjqyahc03lm6iip22cdazcf0")))) (build-system cmake-build-system) (propagated-inputs `(("libusb" ,libusb))) ; required by libftdi1.pc (home-page "http://www.intra2net.com/en/developer/libftdi/") (synopsis "FTDI USB driver with bitbang mode") (description "libFTDI is a library to talk to FTDI chips: FT232BM, FT245BM, FT2232C, FT2232D, FT245R and FT232H including the popular bitbangmode.") (license lgpl2.1))) >
AgeCommit message (Expand)Author
2020-08-01gnu: Update xxhash to 0.8.0....* gnu/packages/digest.scm (xxhash): Update to 0.8.0. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Hendursaga
2020-06-29gnu: xxhash: Detect vector instructions at run time....* gnu/packages/digest.scm (xxhash)[arguments]: Set DISPATCH=1 make flag on x86. Tobias Geerinckx-Rice
2020-06-29gnu: xxhash: Update to 0.7.4....* gnu/packages/digest.scm (xxhash): Update to 0.7.4. Tobias Geerinckx-Rice
2020-06-29gnu: xxhash: Cross-compile....* gnu/packages/digest.scm (xxhash)[arguments]: Use CC-FOR-TARGET. Tobias Geerinckx-Rice
2020-03-11gnu: xxHash: Update to 0.7.3....* gnu/packages/digest.scm (xxhash): Update to 0.7.3. Leo Famulari
2019-12-23gnu: xxhash: Update to 0.7.2....* gnu/packages/digest.scm (xxhash): Update to 0.7.2. [arguments]: Run ‘make check’ in parallel. Tobias Geerinckx-Rice
2019-11-10gnu: Add 'file-name' where appropriate....* gnu/packages/admin.scm (detox, neofetch), gnu/packages/algebra.scm (python-fpylll), gnu/packages/bioinformatics.scm (tbsp, genrich), gnu/packages/crypto.scm (hpenc), gnu/packages/digest.scm (xxhash), gnu/packages/emacs-xyz.scm (emacs-tiny, emacs-ergoemacs-mode, emacs-make-it-so, emacs-poet-theme, emacs-deft, emacs-scribble-mode, emacs-helm-mu, emacs-unidecode, emacs-diff-hl, emacs-helm-exwm, emacs-gif-screencast, emacs-exec-path-from-shell), gnu/packages/engineering.scm (gpx), gnu/packages/freedesktop.scm (waylandpp), gnu/packages/golang.scm (go-github-com-sirupsen-logrus, go-github-com-shirou-gopsutil), gnu/packages/guile-xyz.scm (guile-studio, guile-picture-language, jupyter-guile-kernel), gnu/packages/image-viewers.scm (qview), gnu/packages/java-maths.scm (java-jblas), gnu/packages/llvm.scm (libclc), gnu/packages/logging.scm (spdlog), gnu/packages/ocaml.scm (ocaml-cstruct, ocaml-zarith), gnu/packages/terminals.scm (libtsm), gnu/packages/tigervnc.scm (tigervnc-client), gnu/packages/xdisorg.scm (xcalib, xbanish) [source]: Add file-name. Efraim Flashner