fix(flake): set vendorHash and skip tests in build
vendorHash was empty, causing build failures. The hash was obtained by running the build once and using the error output. Tests are skipped because they require network access; CI runs them via the test workflow. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
0d3f3c19d7
commit
90810cb934
1 changed files with 4 additions and 1 deletions
|
|
@ -21,7 +21,7 @@
|
|||
version = "0.1.0";
|
||||
src = ./.;
|
||||
|
||||
vendorHash = "";
|
||||
vendorHash = "sha256-NbAa4QM/TI3BTuZs4glx9k3ZjSl2/2LQfKlQ7izR8Ho=";
|
||||
# Run: nix build .#packages.x86_64-linux.default
|
||||
# It will fail with the correct hash. Replace it here.
|
||||
|
||||
|
|
@ -30,6 +30,9 @@
|
|||
|
||||
nativeCheckInputs = with pkgs; [ ];
|
||||
|
||||
# Tests require network; they run in CI instead.
|
||||
checkPhase = "";
|
||||
|
||||
meta = with pkgs.lib; {
|
||||
description = "Privacy-respecting, open metasearch engine";
|
||||
homepage = "https://git.ashisgreat.xyz/penal-colony/kafka";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue