gnu: packages/golang-chrypto: Sort some packages.
Adjust order of some packages and place them in other golang-* ones, it contains inherited packages which produce just executable CLI commands without source installed. * gnu/packages/golang-crypto.scm (age, age-keygen): Move variable to the end of file. Change-Id: I58db45f58c537c1c1d59ca29d89267ddd5f5260c
This commit is contained in:
parent
b94b99c664
commit
e61013a0d8
1 changed files with 26 additions and 18 deletions
|
@ -63,6 +63,10 @@
|
||||||
;;;
|
;;;
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
|
;;;
|
||||||
|
;;; Libraries:
|
||||||
|
;;;
|
||||||
|
|
||||||
(define-public go-filippo-io-age
|
(define-public go-filippo-io-age
|
||||||
(package
|
(package
|
||||||
(name "go-filippo-io-age")
|
(name "go-filippo-io-age")
|
||||||
|
@ -92,24 +96,6 @@ It features small explicit keys, no configuration options, and Unix-style
|
||||||
composability.")
|
composability.")
|
||||||
(license license:bsd-3)))
|
(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 age-keygen
|
|
||||||
(package
|
|
||||||
(inherit go-filippo-io-age)
|
|
||||||
(name "age-keygen")
|
|
||||||
(arguments
|
|
||||||
`(#:import-path "filippo.io/age/cmd/age-keygen"
|
|
||||||
#: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")
|
||||||
|
@ -1363,6 +1349,28 @@ performance for large inputs and outputs.")
|
||||||
(description "GoPtLib is a library for writing Tor pluggable transports in
|
(description "GoPtLib is a library for writing Tor pluggable transports in
|
||||||
Go.")
|
Go.")
|
||||||
(license license:cc0)))
|
(license license:cc0)))
|
||||||
|
|
||||||
|
;;;
|
||||||
|
;;; Executables:
|
||||||
|
;;;
|
||||||
|
|
||||||
|
(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 age-keygen
|
||||||
|
(package
|
||||||
|
(inherit go-filippo-io-age)
|
||||||
|
(name "age-keygen")
|
||||||
|
(arguments
|
||||||
|
`(#:import-path "filippo.io/age/cmd/age-keygen"
|
||||||
|
#:unpack-path "filippo.io/age"
|
||||||
|
#:install-source? #f))))
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
;;; Avoid adding new packages to the end of this file. To reduce the chances
|
;;; Avoid adding new packages to the end of this file. To reduce the chances
|
||||||
|
|
Reference in a new issue