nixpkgs/pkgs/servers/caddy/default.nix

42 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
let
2021-11-09 00:56:39 +03:00
version = "2.4.6";
dist = fetchFromGitHub {
owner = "caddyserver";
repo = "dist";
rev = "v${version}";
sha256 = "sha256-EXs+LNb87RWkmSWvs8nZIVqRJMutn+ntR241gqI7CUg=";
};
in
buildGoModule {
pname = "caddy";
inherit version;
2016-06-05 11:43:36 +03:00
subPackages = [ "cmd/caddy" ];
2016-08-21 18:08:33 +03:00
src = fetchFromGitHub {
2019-09-23 06:22:22 +03:00
owner = "caddyserver";
repo = "caddy";
2016-09-21 19:52:17 +03:00
rev = "v${version}";
2021-11-09 00:56:39 +03:00
sha256 = "sha256-xNCxzoNpXkj8WF9+kYJfO18ux8/OhxygkGjA49+Q4vY=";
2016-06-05 11:43:36 +03:00
};
2021-11-09 00:56:39 +03:00
vendorSha256 = "sha256-NomgHqIiugSISbEtvIbJDn5GRn6Dn72adLPkAvLbUQU=";
postInstall = ''
install -Dm644 ${dist}/init/caddy.service ${dist}/init/caddy-api.service -t $out/lib/systemd/system
substituteInPlace $out/lib/systemd/system/caddy.service --replace "/usr/bin/caddy" "$out/bin/caddy"
substituteInPlace $out/lib/systemd/system/caddy-api.service --replace "/usr/bin/caddy" "$out/bin/caddy"
'';
passthru.tests = { inherit (nixosTests) caddy; };
meta = with lib; {
2019-12-02 17:18:23 +03:00
homepage = "https://caddyserver.com";
2016-09-21 19:52:17 +03:00
description = "Fast, cross-platform HTTP/2 web server with automatic HTTPS";
license = licenses.asl20;
maintainers = with maintainers; [ Br1ght0ne ];
2016-09-21 19:52:17 +03:00
};
}