1 Commits

Author SHA1 Message Date
e077b989f7 Re-add guix.scm 2024-06-09 12:17:06 -04:00

25
guix.scm Normal file
View File

@@ -0,0 +1,25 @@
(use-modules (gnu packages guile)
(gnu packages pkg-config)
(guix gexp)
(guix packages)
(guix git-download)
(guix build-system guile)
((guix licenses) #:prefix license:))
(define-public guile-equinix-metal
(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 license:gpl3+)))
guile-equinix-metal