mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 05:59:20 -05:00
gnu: Add go-filippo-io-age.
* gnu/packages/password-utils.scm (age): Move from here… * gnu/packages/golang.scm (age): …to here, and inherit from… (go-filippo-io-age): …this new source-only package variable.
This commit is contained in:
parent
07232e6b17
commit
d618307725
2 changed files with 38 additions and 29 deletions
|
@ -8366,6 +8366,44 @@ (define-public go-etcd-io-bbolt
|
||||||
(description "This package implements a low-level key/value store in Go.")
|
(description "This package implements a low-level key/value store in Go.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-filippo-io-age
|
||||||
|
(package
|
||||||
|
(name "go-filippo-io-age")
|
||||||
|
(version "1.0.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/FiloSottile/age")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "19fz68n262kvg2ssw4r6nik30zk6g6cy7rdi0fm05czwigqrdz1i"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments `(#:import-path "filippo.io/age"))
|
||||||
|
(inputs
|
||||||
|
(list go-golang-org-x-sys
|
||||||
|
go-golang-org-x-term
|
||||||
|
go-golang-org-x-crypto
|
||||||
|
go-filippo-io-edwards25519))
|
||||||
|
(home-page "https://filippo.io/age")
|
||||||
|
(synopsis "Secure file encryption tool, format, and Go library")
|
||||||
|
(description
|
||||||
|
"This package implements file encryption according to the
|
||||||
|
@{age-encryption.org/v1, https://age-encryption.org/v1} specification.
|
||||||
|
It features small explicit keys, no configuration options, and Unix-style
|
||||||
|
composability.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public age
|
||||||
|
(package
|
||||||
|
(inherit go-filippo-io-age)
|
||||||
|
(name "age")
|
||||||
|
(arguments
|
||||||
|
`(#:import-path "filippo.io/age/cmd/age"
|
||||||
|
#:unpack-path "filippo.io/age"
|
||||||
|
#:install-source? #f))))
|
||||||
|
|
||||||
(define-public go-filippo-io-edwards25519
|
(define-public go-filippo-io-edwards25519
|
||||||
(package
|
(package
|
||||||
(name "go-filippo-io-edwards25519")
|
(name "go-filippo-io-edwards25519")
|
||||||
|
|
|
@ -116,35 +116,6 @@ (define-module (gnu packages password-utils)
|
||||||
#:use-module (gnu packages xorg)
|
#:use-module (gnu packages xorg)
|
||||||
#:use-module (gnu packages xml))
|
#:use-module (gnu packages xml))
|
||||||
|
|
||||||
(define-public age
|
|
||||||
(package
|
|
||||||
(name "age")
|
|
||||||
(version "1.0.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/FiloSottile/age")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32 "19fz68n262kvg2ssw4r6nik30zk6g6cy7rdi0fm05czwigqrdz1i"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments `(#:import-path "filippo.io/age"))
|
|
||||||
(inputs
|
|
||||||
(list go-golang-org-x-sys
|
|
||||||
go-golang-org-x-term
|
|
||||||
go-golang-org-x-crypto
|
|
||||||
go-filippo-io-edwards25519))
|
|
||||||
(home-page "https://filippo.io/age")
|
|
||||||
(synopsis "Secure file encryption tool, format, and Go library")
|
|
||||||
(description
|
|
||||||
"This package implements file encryption according to the
|
|
||||||
@{age-encryption.org/v1, https://age-encryption.org/v1} specification.
|
|
||||||
It features small explicit keys, no configuration options, and Unix-style
|
|
||||||
composability.")
|
|
||||||
(license license:bsd-3)))
|
|
||||||
|
|
||||||
(define-public pwgen
|
(define-public pwgen
|
||||||
(package
|
(package
|
||||||
(name "pwgen")
|
(name "pwgen")
|
||||||
|
|
Loading…
Reference in a new issue