[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
20/21: gnu: Add SQL-Abstract.
From: |
Eric Bavier |
Subject: |
20/21: gnu: Add SQL-Abstract. |
Date: |
Fri, 13 Mar 2015 18:51:59 +0000 |
bavier pushed a commit to branch master
in repository guix.
commit dd90952ebe434c2f3f232af78bd8ca10ee5571df
Author: Eric Bavier <address@hidden>
Date: Fri Mar 13 12:10:02 2015 -0500
gnu: Add SQL-Abstract.
* gnu/packages/databases.scm (perl-sql-abstract): New variable.
---
gnu/packages/databases.scm | 31 +++++++++++++++++++++++++++++++
1 files changed, 31 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 26df1f7..59c8995 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -326,6 +326,37 @@ module, and nothing else.")
(license (package-license perl))
(home-page
"http://search.cpan.org/~ishigaki/DBD-SQLite/lib/DBD/SQLite.pm")))
+(define-public perl-sql-abstract
+ (package
+ (name "perl-sql-abstract")
+ (version "1.81")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
+ "SQL-Abstract-" version ".tar.gz"))
+ (sha256
+ (base32
+ "17sgwq3mvqjhv3b77cnvrq60xgp8harjhlnvpwmxc914rqc5ckaz"))))
+ (build-system perl-build-system)
+ (native-inputs
+ `(("perl-test-deep" ,perl-test-deep)
+ ("perl-test-exception" ,perl-test-exception)
+ ("perl-test-warn" ,perl-test-warn)))
+ (propagated-inputs
+ `(("perl-hash-merge" ,perl-hash-merge)
+ ("perl-moo" ,perl-moo)
+ ("perl-mro-compat" ,perl-mro-compat)
+ ("perl-text-balanced" ,perl-text-balanced)))
+ (home-page "http://search.cpan.org/dist/SQL-Abstract")
+ (synopsis "Generate SQL from Perl data structures")
+ (description "This module was inspired by the excellent DBIx::Abstract.
+While based on the concepts used by DBIx::Abstract, the concepts used have
+been modified to make the SQL easier to generate from Perl data structures.
+The underlying idea is for this module to do what you mean, based on the data
+structures you provide it, so that you don't have to modify your code every
+time your data changes")
+ (license (package-license perl))))
(define-public unixodbc
(package
- 10/21: gnu: Add Data-Page., (continued)
- 10/21: gnu: Add Data-Page., Eric Bavier, 2015/03/13
- 11/21: gnu: Add Hash-Merge., Eric Bavier, 2015/03/13
- 13/21: gnu: Add Class-Method-Modifiers., Eric Bavier, 2015/03/13
- 09/21: gnu: Add Class-Accessor-Chained., Eric Bavier, 2015/03/13
- 16/21: gnu: Add strictures., Eric Bavier, 2015/03/13
- 15/21: gnu: Add Role-Tiny., Eric Bavier, 2015/03/13
- 17/21: gnu: Add Moo., Eric Bavier, 2015/03/13
- 18/21: gnu: Add Scope-Guard., Eric Bavier, 2015/03/13
- 14/21: gnu: Add Import-Into., Eric Bavier, 2015/03/13
- 19/21: gnu: Add Text-Balanced., Eric Bavier, 2015/03/13
- 20/21: gnu: Add SQL-Abstract.,
Eric Bavier <=
- 21/21: gnu: Add DBIx-Class., Eric Bavier, 2015/03/13