guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: ntk: Update to 1.3.1000.


From: Ricardo Wurmus
Subject: 02/02: gnu: ntk: Update to 1.3.1000.
Date: Fri, 22 Jun 2018 05:40:37 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit e10a15fa5fef5bdcb1cf202e5472ed9a55009d0b
Author: Ricardo Wurmus <address@hidden>
Date:   Fri Jun 22 11:39:28 2018 +0200

    gnu: ntk: Update to 1.3.1000.
    
    * gnu/packages/fltk.scm (ntk): Update to 1.3.1000.
    [arguments]: Do not use python-2; add missing #t to "set-ldflags" phase.
---
 gnu/packages/fltk.scm | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/fltk.scm b/gnu/packages/fltk.scm
index af7186a..e4eb2fc 100644
--- a/gnu/packages/fltk.scm
+++ b/gnu/packages/fltk.scm
@@ -1,7 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2014 John Darrington <address@hidden>
 ;;; Copyright © 2015 Eric Bavier <address@hidden>
-;;; Copyright © 2015 Ricardo Wurmus <address@hidden>
+;;; Copyright © 2015, 2018 Ricardo Wurmus <address@hidden>
 ;;; Copyright © 2016 Kei Kebreau <address@hidden>
 ;;; Copyright © 2018 Mark H Weaver <address@hidden>
 ;;;
@@ -99,7 +99,7 @@ UI builder called FLUID that can be used to create 
applications in minutes.")
 (define-public ntk
   (package
     (name "ntk")
-    (version "1.3.0")
+    (version "1.3.1000")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -107,21 +107,20 @@ UI builder called FLUID that can be used to create 
applications in minutes.")
                     (commit (string-append "v" version))))
               (sha256
                (base32
-                "0ggrh6rihf676z1vfgpgcl6kpqwyh39ih0hskcgzklh7fphfik39"))
+                "0j38mhnfqy6swcrnc5zxcwlqi8b1pgklyghxk6qs1lf4japv2zc0"))
               (file-name (string-append name "-" version "-checkout"))))
     (build-system waf-build-system)
     (arguments
      `(#:tests? #f ;no "check" target
-       #:python ,python-2
        #:configure-flags '("--enable-gl")
        #:phases
        (modify-phases %standard-phases
-         (add-before
-          'configure 'set-ldflags
-          (lambda* (#:key outputs #:allow-other-keys)
-            (setenv "LDFLAGS"
-                    (string-append "-Wl,-rpath="
-                                   (assoc-ref outputs "out") "/lib")))))))
+         (add-before 'configure 'set-ldflags
+           (lambda* (#:key outputs #:allow-other-keys)
+             (setenv "LDFLAGS"
+                     (string-append "-Wl,-rpath="
+                                    (assoc-ref outputs "out") "/lib"))
+             #t)))))
     (inputs
      `(("libjpeg" ,libjpeg)
        ("glu" ,glu)))



reply via email to

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