me
/
guix
Archived
1
0
Fork 0

gnu: Add erlang-sqlite3.

* gnu/packages/erlang-xyz.scm (erlang-sqlite3): New variable.

Change-Id: I67b5de3b7a8d3e7655e4bb58fd76d5aec4d5dabe
Signed-off-by: Andrew Tropin <andrew@trop.in>
master
Igor Goryachev via Guix-patches via 2024-08-05 13:45:01 +03:00 committed by Andrew Tropin
parent ef9aaea70f
commit dee3d2f787
No known key found for this signature in database
GPG Key ID: 2208D20958C1DEB0
1 changed files with 26 additions and 0 deletions

View File

@ -22,6 +22,7 @@
#:use-module (gnu packages linux)
#:use-module (gnu packages python)
#:use-module (gnu packages serialization)
#:use-module (gnu packages sqlite)
#:use-module (gnu packages tls)
#:use-module (guix build-system rebar)
#:use-module (guix download)
@ -200,6 +201,31 @@ Erlang and Elixir.")
(home-page "https://hex.pm/packages/p1_pgsql")
(license license:asl2.0)))
(define-public erlang-sqlite3
(package
(name "erlang-sqlite3")
(version "1.1.15")
(source
(origin
(method url-fetch)
(uri (hexpm-uri "sqlite3" version))
(sha256
(base32 "0mr8kpv8hf4yknx8vbmyakgasrhk64ldsbafvr4svhi26ghs82rw"))))
(build-system rebar-build-system)
(native-inputs (list erlang-pc sqlite))
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(add-before 'build 'set-environment
(lambda _
(setenv "HOME" "/tmp")
(setenv "CC" "gcc"))))))
(synopsis "SQLite3 driver for Erlang")
(description "This package provides SQLite3 driver for Erlang.")
(home-page "https://hex.pm/packages/sqlite3")
(license license:asl2.0)))
(define-public erlang-stringprep
(package
(name "erlang-stringprep")