guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: sigrok-firmware-fx2lafw: Fix build.


From: guix-commits
Subject: 01/01: gnu: sigrok-firmware-fx2lafw: Fix build.
Date: Fri, 1 Nov 2019 10:25:22 -0400 (EDT)

snape pushed a commit to branch master
in repository guix.

commit 79f0bd7fb3e726883916173390e2704f91aa0c09
Author: Clément Lassieur <address@hidden>
Date:   Fri Nov 1 15:11:01 2019 +0100

    gnu: sigrok-firmware-fx2lafw: Fix build.
    
    * gnu/packages/electronics.scm (sigrok-firmware-fx2lafw)[arguments]: Remove
    implicit inputs.
    [native-inputs]: Add gawk, bash, coreutils, grep, gzip, gnu-make, sed and 
tar.
---
 gnu/packages/electronics.scm | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index 2261cb9..8bee835 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2017 Theodoros Foradis <address@hidden>
 ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <address@hidden>
+;;; Copyright © 2019 Clément Lassieur <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -25,10 +26,13 @@
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system cmake)
   #:use-module (gnu packages)
+  #:use-module (gnu packages base)
+  #:use-module (gnu packages bash)
   #:use-module (gnu packages boost)
   #:use-module (gnu packages check)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages documentation)
+  #:use-module (gnu packages gawk)
   #:use-module (gnu packages glib)
   #:use-module (gnu packages graphviz)
   #:use-module (gnu packages libftdi)
@@ -111,8 +115,18 @@ to take care of the OS-specific details when writing 
software that uses serial p
               (sha256
                (base32
                 "18x5zj3xbcylvb651dia6n4zxbdnv0j62r5af60d0l2g68knkjg4"))))
+    (arguments
+     `(#:implicit-inputs? #f))
     (native-inputs
-     `(("sdcc" ,sdcc)))
+     `(("awk" ,gawk)
+       ("bash" ,bash)
+       ("coreutils" ,coreutils)
+       ("grep" ,grep)
+       ("gzip" ,gzip)
+       ("make" ,gnu-make)
+       ("sdcc" ,sdcc)
+       ("sed" ,sed)
+       ("tar" ,tar)))
     (build-system gnu-build-system)
     (home-page "https://www.sigrok.org/wiki/Fx2lafw";)
     (synopsis "Firmware for Cypress FX2 chips")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]