Compare commits
6 Commits
v0.0.1
...
5b09d16333
| Author | SHA1 | Date | |
|---|---|---|---|
|
5b09d16333
|
|||
|
70d256940f
|
|||
|
0ac6f294d9
|
|||
|
742b271a69
|
|||
|
e077b989f7
|
|||
|
9c595640d9
|
30
.guix/modules/guile-equinix.scm
Normal file
30
.guix/modules/guile-equinix.scm
Normal file
@@ -0,0 +1,30 @@
|
||||
(define-module (guile-equinix-metal-package)
|
||||
#:use-module (guix)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix build-system guile)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (gnu packages guile)
|
||||
#:use-module (gnu packages pkg-config))
|
||||
|
||||
(define %srcdir
|
||||
(string-append (dirname (current-filename)) "/../.."))
|
||||
|
||||
(define-public guile-equinix-metal
|
||||
(package
|
||||
(name "guile-equinix-metal")
|
||||
(version "0.0.5")
|
||||
(source (local-file %srcdir "guile-equinix-metal"
|
||||
#:select? (git-predicate
|
||||
(dirname (assoc-ref (current-source-location) 'filename)))
|
||||
#:recursive? #t))
|
||||
(build-system guile-build-system)
|
||||
(native-inputs (list pkg-config guile-3.0))
|
||||
(inputs (list guile-3.0 guile-json-4))
|
||||
(synopsis "Equinix Metal SDK")
|
||||
(home-page "https://git.fixergrid.net/adam/equinix-scm")
|
||||
(description "Equinix-scm supports token exchange and talking to Metal API")
|
||||
(license license:gpl3+)))
|
||||
|
||||
guile-equinix-metal
|
||||
20
guix.scm
20
guix.scm
@@ -1,20 +0,0 @@
|
||||
(use-modules (gnu packages guile)
|
||||
(gnu packages pkg-config)
|
||||
(guix)
|
||||
(guix git-download)
|
||||
(guix build-system guile))
|
||||
|
||||
(package
|
||||
(name "guile-equinix-metal")
|
||||
(version "0.0.1")
|
||||
(source (local-file "." "guile-equinix-metal"
|
||||
#:select? (git-predicate
|
||||
(dirname (assoc-ref (current-source-location) 'filename)))
|
||||
#:recursive? #t))
|
||||
(build-system guile-build-system)
|
||||
(native-inputs (list pkg-config guile-3.0))
|
||||
(inputs (list guile-3.0 guile-json-4))
|
||||
(synopsis "Equinix Metal SDK")
|
||||
(home-page "https://git.fixergrid.net/adam/equinix-scm")
|
||||
(description "Equinix-scm supports token exchange and talking to Metal API")
|
||||
(license #f))
|
||||
Reference in New Issue
Block a user