guix-commits
[Top][All Lists]
Advanced

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

02/06: gnu: fswatch: Omit static library.


From: guix-commits
Subject: 02/06: gnu: fswatch: Omit static library.
Date: Fri, 17 Dec 2021 23:42:30 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit de22cfcce1ac8309d460c13ffdc8190742edf252
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sat Dec 18 04:31:08 2021 +0100

    gnu: fswatch: Omit static library.
    
    * gnu/packages/monitoring.scm (fswatch)[arguments]:
    Add "--disable-static" to #:configure-flags.
---
 gnu/packages/monitoring.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm
index b7ddc20..69cddfc 100644
--- a/gnu/packages/monitoring.scm
+++ b/gnu/packages/monitoring.scm
@@ -27,6 +27,7 @@
 ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (gnu packages monitoring)
+  #:use-module (guix gexp)
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix git-download)
@@ -557,6 +558,9 @@ devices.")
     (build-system gnu-build-system)
     (native-inputs
      (list autoconf automake gettext-minimal libtool))
+    (arguments
+     (list #:configure-flags
+           #~(list "--disable-static")))
     (synopsis "File system monitor")
     (description "This package provides a file system monitor.")
     (home-page "https://github.com/emcrisostomo/fswatch";)



reply via email to

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