aboutsummaryrefslogtreecommitdiff
path: root/gn
diff options
context:
space:
mode:
authorEfraim Flashner2019-11-06 07:00:22 -0600
committerEfraim Flashner2019-11-06 07:00:22 -0600
commitfffb00c6699c59f1bb96b031af23f419d5c89229 (patch)
tree482d96738435c7fecf4545ce7be8e66f8b3bcbc6 /gn
parent1f7e1da5ba030572b1ef1f1d5c17ef85ff93ab38 (diff)
downloadguix-bioinformatics-fffb00c6699c59f1bb96b031af23f419d5c89229.tar.gz
gn: Add traefik
Diffstat (limited to 'gn')
-rw-r--r--gn/packages/traefik.scm52
1 files changed, 52 insertions, 0 deletions
diff --git a/gn/packages/traefik.scm b/gn/packages/traefik.scm
new file mode 100644
index 0000000..d77ec93
--- /dev/null
+++ b/gn/packages/traefik.scm
@@ -0,0 +1,52 @@
+(define-module (gn packages traefik)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix packages)
+ #:use-module (guix download)
+ #:use-module (guix build-system trivial)
+ #:use-module (gnu packages base)
+ #:use-module (gnu packages compression))
+
+(define-public traefik
+ (package
+ (name "traefik")
+ (version "2.0.4")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/containous/traefik/"
+ "releases/download/v" version
+ "/traefik_v" version "_linux_amd64.tar.gz"))
+ (sha256
+ (base32
+ "0i0c2d647ks7x3p8l46rslrmnasdk88a6caq1c6diy3ngdcwik23"))))
+ (build-system trivial-build-system)
+ (arguments
+ `(#:modules ((guix build utils))
+ #:builder
+ (begin
+ (use-modules (guix build utils))
+ (let* ((out (assoc-ref %outputs "out"))
+ (bin (string-append out "/bin"))
+ (target (string-append bin "/traefik"))
+ (gzip (assoc-ref %build-inputs "gzip"))
+ (tar (assoc-ref %build-inputs "tar"))
+ (source (assoc-ref %build-inputs "source")))
+ (setenv "PATH" (string-append gzip "/bin"))
+ (invoke (string-append tar "/bin/tar") "xvf" source)
+ (install-file "traefik" bin)
+ (install-file "LICENSE.md" (string-append out "/share/doc/"
+ ,name "-" ,version)))
+ #t)))
+ (native-inputs
+ `(("gzip" ,gzip)
+ ("source" ,source)
+ ("tar" ,tar)))
+ (home-page "https://traefik.io/")
+ (synopsis "Cloud Native Edge Router")
+ (description "Traefik (pronounced traffic) is a modern HTTP reverse proxy
+and load balancer that makes deploying microservices easy. Traefik integrates
+with your existing infrastructure components (Docker, Swarm mode, Kubernetes,
+Marathon, Consul, Etcd, Rancher, Amazon ECS, ...) and configures itself
+automatically and dynamically. Pointing Traefik at your orchestrator should be
+the only configuration step you need.")
+ (supported-systems '("x86_64-linux"))
+ (license license:expat)))