gnu: leveldb: Update to 1.21.
* gnu/packages/databases.scm (leveldb): Update to 1.21. [build-system]: Change to CMAKE-BUILD-SYSTEM. [arguments]: Adjust accordingly.
This commit is contained in:
parent
ad7c77fd75
commit
5cc013f05d
|
@ -239,33 +239,19 @@ ElasticSearch server")
|
||||||
(define-public leveldb
|
(define-public leveldb
|
||||||
(package
|
(package
|
||||||
(name "leveldb")
|
(name "leveldb")
|
||||||
(version "1.20")
|
(version "1.21")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/google/leveldb")
|
(url "https://github.com/google/leveldb")
|
||||||
(commit (string-append "v" version))))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"01kxga1hv4wp94agx5vl3ybxfw5klqrdsrb6p6ywvnjmjxm8322y"))))
|
"00v0w6883z7a6204894j59nd5v6dazn3c8hvh3sbczv4wiabppw2"))))
|
||||||
(build-system gnu-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:make-flags (list "CC=gcc")
|
`(#:configure-flags '("-DBUILD_SHARED_LIBS=ON" "-DLEVELDB_BUILD_TESTS=ON")))
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(delete 'configure)
|
|
||||||
(replace 'install
|
|
||||||
;; There is no install target, so we do it here.
|
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
|
||||||
(lib (string-append out "/lib"))
|
|
||||||
(include (string-append out "/include")))
|
|
||||||
(for-each (lambda (file)
|
|
||||||
(install-file file lib))
|
|
||||||
(find-files "out-shared" "^libleveldb\\.so.*$"))
|
|
||||||
(copy-recursively "include" include)
|
|
||||||
#t))))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("snappy" ,snappy)))
|
`(("snappy" ,snappy)))
|
||||||
(home-page "http://leveldb.org/")
|
(home-page "http://leveldb.org/")
|
||||||
|
|
Loading…
Reference in New Issue