about summary refs log tree commit diff
diff options
context:
space:
mode:
authorpjotrp2023-03-24 12:05:32 +0100
committerpjotrp2023-03-24 12:05:37 +0100
commitc99bd25ee535e432eddea63a8d1aec7f1f8255b8 (patch)
tree18f552eb6ce36b720b24c9b10542dabd63a90db0
parentac4a32b4699321edf0bb232aad89c4b35645c042 (diff)
downloadguix-bioinformatics-c99bd25ee535e432eddea63a8d1aec7f1f8255b8.tar.gz
Adding ruby-lmdb package
-rw-r--r--gn/packages/ruby.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/gn/packages/ruby.scm b/gn/packages/ruby.scm
index 79e210c..d02fc49 100644
--- a/gn/packages/ruby.scm
+++ b/gn/packages/ruby.scm
@@ -5971,3 +5971,23 @@ Simple gem that adds various color methods to String class, and can be used as f
   (home-page
     "http://github.com/pjotrp/regressiontest")
   (license license:expat)))
+
+(define-public ruby-lmdb
+  (package
+   (name "ruby-lmdb")
+   (version "0.6.1")
+   (source (origin
+            (method url-fetch)
+            (uri (rubygems-uri "lmdb" version))
+            (sha256
+             (base32
+              "0yzlf56ynj545ln5dxl422rpi8r6h11cr6rag5hk2qpbkzs6l9c2"))))
+   (build-system ruby-build-system)
+   (native-inputs
+    `(("ruby-rake" ,ruby-rake)
+       ("ruby-rake-compiler" ,ruby-rake-compiler)
+       ("ruby-rspec" ,ruby-rspec)      ("ruby-rspec" ,ruby-rspec)))
+   (synopsis "lmdb is a Ruby binding to OpenLDAP Lightning MDB.")
+   (description "lmdb is a Ruby binding to OpenLDAP Lightning MDB.")
+   (home-page "https://github.com/doriantaylor/rb-lmdb")
+   (license license:expat)))