nix: migrate from vendorSha256 to vendorHash

This commit is contained in:
Luke Granger-Brown 2023-12-14 11:17:47 +00:00
parent 82ac0a4fcf
commit 3069e3d564
5 changed files with 5 additions and 5 deletions

View file

@ -4,6 +4,6 @@ pkgs.buildGoModule {
pname = "authentik-server"; pname = "authentik-server";
inherit src version; inherit src version;
vendorSha256 = "sha256:1jn30nca1g0853rj0wrmqc4x3pfvr2kf8kklnxzvqg471ywlhln4"; vendorHash = "sha256:1jn30nca1g0853rj0wrmqc4x3pfvr2kf8kklnxzvqg471ywlhln4";
subPackages = "cmd/server"; subPackages = "cmd/server";
} }

View file

@ -14,6 +14,6 @@ pkgs.buildGoModule rec {
sha256 = "sha256:07q4fjkjxn2qbqvj2him7p7rw1309yhc0mnlpnvfb2m9ias0infy"; sha256 = "sha256:07q4fjkjxn2qbqvj2him7p7rw1309yhc0mnlpnvfb2m9ias0infy";
}; };
vendorSha256 = null; vendorHash = null;
doCheck = false; doCheck = false;
} }

View file

@ -24,7 +24,7 @@ in
]; ];
src = newSrc; src = newSrc;
vendorSha256 = null; vendorHash = null;
patches = [ ./fix-shell-path.patch ]; patches = [ ./fix-shell-path.patch ];

View file

@ -9,7 +9,7 @@ let
version = "0.0.1"; version = "0.0.1";
src = ./.; src = ./.;
vendorSha256 = "0n8dvdgn6izb4qcjdcsqjzximkkpf5i2xb4ap5aa2n8c36w2dn5h"; vendorHash = "sha256:0n8dvdgn6izb4qcjdcsqjzximkkpf5i2xb4ap5aa2n8c36w2dn5h";
subPackages = [ "." ]; subPackages = [ "." ];

View file

@ -21,7 +21,7 @@ buildGoModule rec {
patches = [ ./just-add-a-sleep.patch ]; patches = [ ./just-add-a-sleep.patch ];
vendorSha256 = "sha256:1c58470n843yh9jd010xxaqzg9lrpaw9w969ygqb6h3x8k1my7jp"; vendorHash = "sha256:1c58470n843yh9jd010xxaqzg9lrpaw9w969ygqb6h3x8k1my7jp";
subPackages = [ subPackages = [
"cmd/acme" "cmd/acme"