Traefik init at 1.3.8
This commit is contained in:
parent
6373c9606d
commit
e0b81b9c3c
@ -237,6 +237,7 @@
|
||||
guillaumekoenig = "Guillaume Koenig <guillaume.edward.koenig@gmail.com>";
|
||||
guyonvarch = "Joris Guyonvarch <joris@guyonvarch.me>";
|
||||
hakuch = "Jesse Haber-Kucharsky <hakuch@gmail.com>";
|
||||
hamhut1066 = "Hamish Hutchings <github@hamhut1066.com>";
|
||||
havvy = "Ryan Scheel <ryan.havvy@gmail.com>";
|
||||
hbunke = "Hendrik Bunke <bunke.hendrik@gmail.com>";
|
||||
hce = "Hans-Christian Esperer <hc@hcesperer.org>";
|
||||
|
24
pkgs/servers/traefik/default.nix
Normal file
24
pkgs/servers/traefik/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "traefik-${version}";
|
||||
version = "v1.3.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/containous/traefik/releases/download/${version}/traefik";
|
||||
sha256 = "09m8svkqdrvayw871azzcb05dnbhbgb3c2380dw0v4wpcd0rqr9h";
|
||||
};
|
||||
|
||||
buildCommand = ''
|
||||
mkdir -p $out/bin
|
||||
cp $src $out/bin/traefik
|
||||
chmod +x $out/bin/traefik
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://traefik.io;
|
||||
description = "Træfik, a modern reverse proxy";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ hamhut1066 ];
|
||||
};
|
||||
}
|
@ -820,6 +820,7 @@ with pkgs;
|
||||
});
|
||||
|
||||
caddy = callPackage ../servers/caddy { };
|
||||
traefik = callPackage ../servers/traefik { };
|
||||
|
||||
capstone = callPackage ../development/libraries/capstone { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user