guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Build wiredtiger with snappy support.


From: Christopher Baines
Subject: 01/01: gnu: Build wiredtiger with snappy support.
Date: Fri, 22 Dec 2017 14:38:51 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit 3faa422d5fe9e2943f477b1deb2bf4d5a1aac92b
Author: Christopher Baines <address@hidden>
Date:   Fri Dec 22 19:23:53 2017 +0000

    gnu: Build wiredtiger with snappy support.
    
    This is probably necessary to get the MongoDB package in Guix to 
successfully
    use the Guix wiredtiger package, as MongoDB it uses wiredtiger with snappy 
by
    default.
    
    * gnu/packages/databases.scm (wiredtiger)[arguments]: Add --enable-snappy to
      #:configure-flags.
      [inputs]: Add snappy.
---
 gnu/packages/databases.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 0a52d3d..755fe7a 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -1500,7 +1500,7 @@ organized in hash table, B+ tree, or fixed-length array.")
                 "0krwnb2zfbhvjaskwl875qzd3y626s84zcciq2mxr5c5riw3yh6s"))))
     (build-system gnu-build-system)
     (arguments
-     '(#:configure-flags '("--enable-lz4" "--enable-zlib")
+     '(#:configure-flags '("--enable-lz4" "--enable-zlib" "--enable-snappy")
        #:phases
        (modify-phases %standard-phases
          (add-before 'check 'disable-test/fops
@@ -1511,7 +1511,8 @@ organized in hash table, B+ tree, or fixed-length array.")
              #t)))))
     (inputs
      `(("lz4" ,lz4)
-       ("zlib" ,zlib)))
+       ("zlib" ,zlib)
+       ("snappy" ,snappy)))
     (home-page "http://source.wiredtiger.com/";)
     (synopsis "NoSQL data engine")
     (description



reply via email to

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