guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: inkscape: Use modify-phases syntax.


From: Ricardo Wurmus
Subject: 01/02: gnu: inkscape: Use modify-phases syntax.
Date: Thu, 10 Nov 2016 17:49:58 +0000 (UTC)

rekado pushed a commit to branch master
in repository guix.

commit 3f62fa2b8180afd8dafd9e38cc34bcba9beab871
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Nov 8 22:44:08 2016 +0100

    gnu: inkscape: Use modify-phases syntax.
    
    * gnu/packages/inkscape.scm (inkscape)[arguments]: Use modify-phases
    syntax.
---
 gnu/packages/inkscape.scm |   15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/inkscape.scm b/gnu/packages/inkscape.scm
index 16f83fc..d98a4cd 100644
--- a/gnu/packages/inkscape.scm
+++ b/gnu/packages/inkscape.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2014 John Darrington <address@hidden>
 ;;; Copyright © 2014, 2016 Mark H Weaver <address@hidden>
+;;; Copyright © 2016 Ricardo Wurmus <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -80,13 +81,13 @@
      `(;; Add '-std=c++11', required by recent versions of GLibmm & co.
        ;; Use '-g0' to reduce disk usage during the build.
        #:configure-flags '("CXXFLAGS=-g0 -O2 -fopenmp -std=c++11")
-
-       #:phases (alist-cons-after
-                 'unpack 'fix-test-includes
-                 (lambda _
-                   (substitute* "src/cxxtests.cpp"
-                     (("\\.\\./\\.\\./src") "../src")))
-                 %standard-phases)))
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'fix-test-includes
+           (lambda _
+             (substitute* "src/cxxtests.cpp"
+               (("\\.\\./\\.\\./src") "../src"))
+             #t)))))
     (home-page "http://inkscape.org/";)
     (synopsis "Vector graphics editor")
     (description "Inkscape is a vector graphics editor.  What sets Inkscape



reply via email to

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