Last active
May 19, 2022 15:24
-
-
Save vamega/e0e234360d180e1d691d9896e565c592 to your computer and use it in GitHub Desktop.
Caddy with modules ( Does Not Work )
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Reproduction of issue described in: https://discourse.nixos.org/t/unable-to-build-caddy-with-custom-modules/19125 | |
Problem was found to be the reused value of the sha256 in the `dist` and `src` derivations. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with import <nixpkgs> {}; | |
callPackage ./caddy.nix { | |
plugins = [ | |
"github.com/caddy-dns/cloudflare" | |
]; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ lib, buildGo117Module, fetchFromGitHub, nixosTests, plugins ? [ ], pkgs }: | |
let | |
version = "2.5.1"; | |
dist = fetchFromGitHub { | |
owner = "caddyserver"; | |
repo = "dist"; | |
rev = "v${version}"; | |
sha256 = "sha256:1nlphjg5wh5drpwkm4cczrkxdzbv72ll7hp5x7z6ww8pzz3q10b3"; | |
}; | |
imports = lib.flip lib.concatMapStrings plugins (pkg: " _ \"${pkg}\"\n"); | |
main = '' | |
package main | |
import ( | |
caddycmd "github.com/caddyserver/caddy/v2/cmd" | |
_ "github.com/caddyserver/caddy/v2/modules/standard" | |
${imports} | |
) | |
func main() { | |
caddycmd.Main() | |
} | |
''; | |
in buildGo117Module { | |
pname = "caddy"; | |
inherit version; | |
runVend = true; | |
subPackages = [ "cmd/caddy" ]; | |
src = fetchFromGitHub { | |
owner = "caddyserver"; | |
repo = "caddy"; | |
rev = "v${version}"; | |
sha256 = "sha256:1nlphjg5wh5drpwkm4cczrkxdzbv72ll7hp5x7z6ww8pzz3q10b3"; | |
}; | |
vendorSha256 = "sha256:082yh6rqr41xwg2xpqg2sdms9m7bw68bc44bgg3xwfbgdbzrs0ni"; | |
nativeBuildInputs = [ pkgs.breakpointHook ]; | |
overrideModAttrs = (_: { | |
preBuild = "echo '${main}' > cmd/caddy/main.go"; | |
postInstall = "cp go.sum go.mod $out/ && ls $out/"; | |
}); | |
postPatch = '' | |
echo '${main}' > cmd/caddy/main.go | |
cat cmd/caddy/main.go | |
''; | |
postConfigure = '' | |
cp vendor/go.sum ./ | |
cp vendor/go.mod ./ | |
''; | |
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; { | |
homepage = "https://caddyserver.com"; | |
description = "Fast, cross-platform HTTP/2 web server with automatic HTTPS"; | |
license = licenses.asl20; | |
maintainers = with maintainers; [ Br1ght0ne techknowlogick ]; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment