From 4db7ae2cace4f94842ac119673ed9b74d68772cf Mon Sep 17 00:00:00 2001 From: Adam Mohammed Date: Fri, 7 Jun 2024 23:14:30 -0400 Subject: [PATCH] Add file to build guix package --- guix.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 guix.scm diff --git a/guix.scm b/guix.scm new file mode 100644 index 0000000..756c514 --- /dev/null +++ b/guix.scm @@ -0,0 +1,20 @@ +(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))