guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: Add ruby-pg.


From: David Thompson
Subject: 02/02: gnu: Add ruby-pg.
Date: Mon, 07 Sep 2015 13:18:18 +0000

davexunit pushed a commit to branch master
in repository guix.

commit 4a9e05856622d535cb51d64fe733b1c904095516
Author: David Thompson <address@hidden>
Date:   Sat Aug 29 22:03:51 2015 -0400

    gnu: Add ruby-pg.
    
    * gnu/packages/ruby.scm (ruby-pg): New variable.
---
 gnu/packages/ruby.scm |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index fe9ba35..5ec32b4 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -24,6 +24,7 @@
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (gnu packages)
   #:use-module (gnu packages compression)
+  #:use-module (gnu packages databases)
   #:use-module (gnu packages readline)
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages java)
@@ -1030,3 +1031,29 @@ Nokogiri and other Ruby XML parsers for generic XML 
parsing and as an
 alternative to Marshal for Object serialization. ")
     (home-page "http://www.ohler.com/ox";)
     (license license:expat)))
+
+(define-public ruby-pg
+  (package
+    (name "ruby-pg")
+    (version "0.18.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (rubygems-uri "pg" version))
+       (sha256
+        (base32
+         "1axxbf6ij1iqi3i1r3asvjc80b0py5bz0m2wy5kdi5xkrpr82kpf"))))
+    (build-system ruby-build-system)
+    (arguments
+     '(#:test-target "spec"))
+    (native-inputs
+     `(("ruby-rake-compiler" ,ruby-rake-compiler)
+       ("ruby-hoe" ,ruby-hoe)
+       ("ruby-rspec" ,ruby-rspec)))
+    (inputs
+     `(("postgresql" ,postgresql)))
+    (synopsis "Ruby interface to PostgreSQL")
+    (description "Pg is the Ruby interface to the PostgreSQL RDBMS.  It works
+with PostgreSQL 8.4 and later.")
+    (home-page "https://bitbucket.org/ged/ruby-pg";)
+    (license license:ruby)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]