mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add guile-dotenv.
* gnu/packages/guile-xyz.scm (guile-dotenv): New variable. Change-Id: I4b97e6b0fb18280c391b99d5b6f512f9b08ba06b
This commit is contained in:
parent
6004e11219
commit
e2417b4895
1 changed files with 29 additions and 0 deletions
|
@ -56,6 +56,7 @@
|
||||||
;;; Copyright © 2025 Florian Pelz <pelzflorian@pelzflorian.de>
|
;;; Copyright © 2025 Florian Pelz <pelzflorian@pelzflorian.de>
|
||||||
;;; Copyright © 2025 Libre en Communs <contact@a-lec.org>
|
;;; Copyright © 2025 Libre en Communs <contact@a-lec.org>
|
||||||
;;; Copyright © 2025 Noé Lopez <noelopez@free.fr>
|
;;; Copyright © 2025 Noé Lopez <noelopez@free.fr>
|
||||||
|
;;; Copyright © 2025 Giacomo Leidi <goodoldpaul@autistici.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -868,6 +869,34 @@ you send to a FIFO file.")
|
||||||
generate API documentation for GNU Guile projects.")
|
generate API documentation for GNU Guile projects.")
|
||||||
(license license:public-domain)))
|
(license license:public-domain)))
|
||||||
|
|
||||||
|
(define-public guile-dotenv
|
||||||
|
(package
|
||||||
|
(name "guile-dotenv")
|
||||||
|
(version "0.1.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://codeberg.org/fishinthecalculator/dotenv.git")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0m5jg41cipnpl3w9vzwm50ah0haa2hcwwd7mri7kaa8pr9kfx64j"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
(list autoconf
|
||||||
|
automake
|
||||||
|
gettext-minimal
|
||||||
|
pkg-config
|
||||||
|
texinfo))
|
||||||
|
(inputs (list guile-3.0))
|
||||||
|
(synopsis "Read environment variables specifications from @code{.env} files")
|
||||||
|
(description "This package provides a simple Guile interface to @code{.env}
|
||||||
|
(or dotenv) files. It implements parsing of files and setting environment
|
||||||
|
variables from them.")
|
||||||
|
(home-page "https://codeberg.org/fishinthecalculator/dotenv")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public guile-dsv
|
(define-public guile-dsv
|
||||||
(package
|
(package
|
||||||
(name "guile-dsv")
|
(name "guile-dsv")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue