On Thu, 31 Aug 2017 14:32:58 +0200 ludo@gnu.org (Ludovic Courtès) wrote: > Christopher Baines 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? Indeed. I've now sent an updated set of patches, and I've moved some of these to inputs. > > + (arguments > > + `(#:tests? #f ;; TODO: Check phase currently fails > > Maybe leave a few details on why this is failing. I tried to check, and the tests passed, which seems good :) > > + (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. Good spot, this should be fixed in the latest patch. > > + (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. I've added a comment stating that the Apache license applies to parts of the source code. I don't believe it's dual licensed.