Archived
1
0
Fork 0

gnu: leveldb: Update to 1.23.

* gnu/packages/databases.scm (leveldb): Update to 1.23.
[arguments]: Rewrite as a keyword/gexp list.  Add a new
'unpack-third_party-sources phase.  Add #:configure-flags to prevent
these from being installed to the output.
This commit is contained in:
Tobias Geerinckx-Rice 2021-12-19 02:29:06 +01:00
parent 7c8dddb16f
commit 2b7cd75f4c
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -149,6 +149,7 @@
#:use-module (gnu packages web)
#:use-module (gnu packages xdisorg)
#:use-module (gnu packages xml)
#:use-module (guix gexp)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix download)
@ -463,7 +464,7 @@ database later.")
(define-public leveldb
(package
(name "leveldb")
(version "1.22")
(version "1.23")
(source (origin
(method git-fetch)
(uri (git-reference
@ -472,10 +473,25 @@ database later.")
(file-name (git-file-name name version))
(sha256
(base32
"0qrnhiyq7r4wa1a4wi82zgns35smj94mcjsc7kfs1k6ia9ys79z7"))))
"1chxkhb6ajdmj4p8535k4472fbmqvcismll6aapkarsr45yrvgs4"))))
(build-system cmake-build-system)
(arguments
`(#:configure-flags '("-DBUILD_SHARED_LIBS=ON" "-DLEVELDB_BUILD_TESTS=ON")))
(list #:configure-flags
#~(list "-DBUILD_SHARED_LIBS=ON"
"-DLEVELDB_BUILD_TESTS=ON"
;; Don't install(!) the third_party test frameworks below.
"-DINSTALL_GTEST=OFF"
"-DBENCHMARK_ENABLE_INSTALL=OFF")
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'unpack-third_party-sources
;; These are only for testing, so copying source is fine.
(lambda _
(copy-recursively #$(package-source googletest)
"third_party/googletest")
(copy-recursively #$(package-source googlebenchmark)
"third_party/benchmark"))))))
(inputs
(list snappy))
(home-page "https://github.com/google/leveldb")