Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Guix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ogs
inf
Guix
Commits
14e84b2d
Commit
14e84b2d
authored
10 years ago
by
John Darrington
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add unixodbc
* gnu/packages/databases.scm (unixodbc): New variable.
parent
fac8b30b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnu/packages/databases.scm
+22
-1
22 additions, 1 deletion
gnu/packages/databases.scm
with
22 additions
and
1 deletion
gnu/packages/databases.scm
+
22
−
1
View file @
14e84b2d
...
...
@@ -35,7 +35,7 @@ (define-module (gnu packages databases)
#
:use-module
(
gnu
packages
gnupg
)
#
:use-module
(
gnu
packages
python
)
#
:use-module
((
guix
licenses
)
#
:select
(
gpl2
gpl3+
lgpl3+
x11-style
bsd-style
#
:select
(
gpl2
gpl3+
lgpl2
.
1
+
lgpl3+
x11-style
bsd-style
public-domain
))
#
:use-module
(
guix
packages
)
#
:use-module
(
guix
download
)
...
...
@@ -323,3 +323,24 @@ (define-public perl-dbd-sqlite
module, and nothing else."
)
(
license
(
package-license
perl
))
(
home-page
"http://search.cpan.org/~ishigaki/DBD-SQLite/lib/DBD/SQLite.pm"
)))
(
define-public
unixodbc
(
package
(
name
"unixodbc"
)
(
version
"2.3.2"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
string-append
"ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-"
version
".tar.gz"
))
(
sha256
(
base32
"16jw5fq7wgfky6ak1h2j2pqx99jivsdl4q8aq6immpr55xs5jd4w"
))))
(
build-system
gnu-build-system
)
(
synopsis
"Data source abstraction library"
)
(
description
"Unixodbc is a library providing an API with which to access
data sources. Data sources include SQL Servers and any software with an ODBC
Driver."
)
(
license
lgpl2
.
1
+
)
;; COPYING contains copy of lgpl2.1 - but copyright notices just say "LGPL"
(
home-page
"http://www.unixodbc.org"
)))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment