gnu: lmdb: Don't use unstable tarball.
authorTobias Geerinckx-Rice <me@tobias.gr>
Tue, 12 Feb 2019 17:07:01 +0000 (18:07 +0100)
committerTobias Geerinckx-Rice <me@tobias.gr>
Wed, 27 Feb 2019 14:48:53 +0000 (15:48 +0100)
* gnu/packages/databases.scm (lmdb)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
[arguments]: Adjust source directory name.

gnu/packages/databases.scm

index 3d13433..8168407 100644 (file)
@@ -1668,13 +1668,15 @@ database.")
   (package
     (name "lmdb")
     (version "0.9.22")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/LMDB/lmdb/archive/"
-                                  "LMDB_" version ".tar.gz"))
-              (sha256
-               (base32
-                "0a7a8535csrvw71mrgx680m5d17bnxmmhcccij30idifi1cpi4pk"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/LMDB/lmdb.git")
+             (commit (string-append "LMDB_" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0lng4ra2qrbqcf8klvqp68qarha0z4bkqhhv8lhh45agsxyrhfkj"))))
     (build-system gnu-build-system)
     (arguments
      `(#:test-target "test"
@@ -1682,8 +1684,7 @@ database.")
        (modify-phases %standard-phases
          (replace 'configure
            (lambda* (#:key outputs #:allow-other-keys)
-             (chdir (string-append
-               (getenv "PWD") "/lmdb-LMDB_" ,version "/libraries/liblmdb"))
+             (chdir "libraries/liblmdb")
              (substitute* "Makefile"
                (("/usr/local") (assoc-ref outputs "out")))
             #t)))))