[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#28198] [PATCH 2/4] gnu: Add mongodb.
From: |
Ludovic Courtès |
Subject: |
[bug#28198] [PATCH 2/4] gnu: Add mongodb. |
Date: |
Thu, 31 Aug 2017 14:32:58 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) |
Christopher Baines <address@hidden> skribis:
> * gnu/packages/databases.scm (mongodb): New variable.
[...]
> + (build-system gnu-build-system)
> + (native-inputs
> + `(("scons" ,scons)
> + ("python" ,python-2)
> + ("openssl" ,openssl)
> + ("boost" ,boost)
> + ("snappy" ,snappy)
> + ("zlib" ,zlib)
> + ("pcre" ,pcre)
> + ("valgrind" ,valgrind)
> + ("yaml-cpp" ,yaml-cpp)
> + ("perl" ,perl)))
Seems like some of these should rather go to ‘inputs’, no?
> + (arguments
> + `(#:tests? #f ;; TODO: Check phase currently fails
Maybe leave a few details on why this is failing.
> + (replace 'install
> + (lambda _
> + (let ((bin (string-append (assoc-ref %outputs "out")
> "/bin")))
> + (install-file "mongod" bin)
> + (install-file "mongos" bin)
> + (install-file "mongo" bin))))))))
Return #t.
> + (home-page "https://www.mongodb.org/")
> + (synopsis "High performance and high availability document database")
> + (description
> + "Mongo is a high-performance, high availability, schema-free
> +document-oriented database. A key goal of MongoDB is to bridge the gap
> +between key/value stores (which are fast and highly scalable) and traditional
> +RDBMS systems (which are deep in functionality).")
> + (license (list license:agpl3 license:asl2.0))))
AGPL version 3 only? Also please add a comment stating whether it’s
dual-licensed or something else.
OK with these changes, thank you!
Ludo’.