Skip to content

Commit e0b81b9

Browse files
committed
Traefik init at 1.3.8
1 parent 6373c96 commit e0b81b9

3 files changed

Lines changed: 26 additions & 0 deletions

File tree

lib/maintainers.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@
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>";

pkgs/servers/traefik/default.nix

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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+
}

pkgs/top-level/all-packages.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)