mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: fswatch: Omit static library.
* gnu/packages/monitoring.scm (fswatch)[arguments]: Add "--disable-static" to #:configure-flags.
This commit is contained in:
parent
4c3a1f0399
commit
de22cfcce1
1 changed files with 4 additions and 0 deletions
|
@ -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 @@ (define-public fswatch
|
|||
(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")
|
||||
|
|
Loading…
Reference in a new issue