guix-commits
[Top][All Lists]
Advanced

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

09/09: gnu: upx: Fix UCL input.


From: guix-commits
Subject: 09/09: gnu: upx: Fix UCL input.
Date: Fri, 18 Oct 2019 08:44:12 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit d8963031afa3044fe5c52d04d174a209ca6bd618
Author: Marius Bakke <address@hidden>
Date:   Fri Oct 18 14:43:27 2019 +0200

    gnu: upx: Fix UCL input.
    
    UCL is a runtime dependency, and thus should not be a native input.
    
    * gnu/packages/compression.scm (upx)[native-inputs]: Move UCL from here ...
    [inputs]: ... to here.
---
 gnu/packages/compression.scm | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index ffe9279..6279c92 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -1928,9 +1928,11 @@ decompression is a little bit slower.")
                "08anybdliqsbsl6x835iwzljahnm9i7v26icdjkcv33xmk6p5vw1"))
              (patches (search-patches "upx-fix-CVE-2017-15056.patch"))))
     (build-system gnu-build-system)
-    (native-inputs `(("perl" ,perl)
-                     ("ucl" ,ucl)))
-    (inputs `(("zlib" ,zlib)))
+    (native-inputs
+     `(("perl" ,perl)))
+    (inputs
+     `(("ucl" ,ucl)
+       ("zlib" ,zlib)))
     (arguments
      `(#:make-flags
        (list "all"



reply via email to

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