guix-commits
[Top][All Lists]
Advanced

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

03/05: gnu: syncthing: Use install-source? to disable installing the sou


From: Leo Famulari
Subject: 03/05: gnu: syncthing: Use install-source? to disable installing the source code.
Date: Tue, 24 Oct 2017 13:11:50 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit 1899ef0b838075d82b957a632ce995f4e192849f
Author: Leo Famulari <address@hidden>
Date:   Tue Oct 24 12:18:24 2017 -0400

    gnu: syncthing: Use install-source? to disable installing the source code.
    
    * gnu/packages/syncthing.scm (syncthing): Set #:install-source? #f
    instead of deleting the install-source phase.
---
 gnu/packages/syncthing.scm | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm
index b4bc1e0..0bfa6d9 100644
--- a/gnu/packages/syncthing.scm
+++ b/gnu/packages/syncthing.scm
@@ -41,6 +41,8 @@
     (arguments
      `(#:import-path "github.com/syncthing/syncthing"
        #:unpack-path "github.com/syncthing"
+       ;; We don't need to install the source code for end-user applications.
+       #:install-source? #f
        #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'delete-bundled-source-code
@@ -55,9 +57,6 @@
                           
"src/github.com/syncthing/syncthing/vendor/github.com/cznic")
              #t))
 
-         ;; We don't need to install the source code for end-user applications.
-         (delete 'install-source)
-
          (add-before 'build 'increase-test-timeout
            (lambda _
              (substitute* "src/github.com/syncthing/syncthing/build.go"



reply via email to

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