File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 237237 guillaumekoenig = "Guillaume Koenig <guillaume.edward.koenig@gmail.com>" ;
238238 guyonvarch = "Joris Guyonvarch <joris@guyonvarch.me>" ;
239239 hakuch = "Jesse Haber-Kucharsky <hakuch@gmail.com>" ;
240+ hamhut1066 = "Hamish Hutchings <github@hamhut1066.com>" ;
240241 havvy = "Ryan Scheel <ryan.havvy@gmail.com>" ;
241242 hbunke = "Hendrik Bunke <bunke.hendrik@gmail.com>" ;
242243 hce = "Hans-Christian Esperer <hc@hcesperer.org>" ;
Original file line number Diff line number Diff line change 1+ { stdenv , fetchurl } :
2+
3+ stdenv . mkDerivation rec {
4+ name = "traefik-${ version } " ;
5+ version = "v1.3.8" ;
6+
7+ src = fetchurl {
8+ url = "https://github.com/containous/traefik/releases/download/${ version } /traefik" ;
9+ sha256 = "09m8svkqdrvayw871azzcb05dnbhbgb3c2380dw0v4wpcd0rqr9h" ;
10+ } ;
11+
12+ buildCommand = ''
13+ mkdir -p $out/bin
14+ cp $src $out/bin/traefik
15+ chmod +x $out/bin/traefik
16+ '' ;
17+
18+ meta = with stdenv . lib ; {
19+ homepage = https://traefik.io ;
20+ description = "Træfik, a modern reverse proxy" ;
21+ license = licenses . mit ;
22+ maintainers = with maintainers ; [ hamhut1066 ] ;
23+ } ;
24+ }
Original file line number Diff line number Diff line change @@ -820,6 +820,7 @@ with pkgs;
820820 });
821821
822822 caddy = callPackage ../servers/caddy { };
823+ traefik = callPackage ../servers/traefik { };
823824
824825 capstone = callPackage ../development/libraries/capstone { };
825826
You can’t perform that action at this time.
0 commit comments