Skip to content

Commit

Permalink
nix: move some nativeBuildInputs to checkInputs
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Seipp <[email protected]>
  • Loading branch information
thoughtpolice committed Oct 18, 2024
1 parent 2a0ad19 commit c7b6f72
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,18 @@
makeWrapper
pkg-config

# for signing tests
gnupg
openssh
] ++ linuxNativeDeps;
buildInputs = with pkgs; [
openssl zstd libgit2 libssh2
] ++ darwinDeps;
checkInputs = with pkgs; [
# for signing tests
gnupg
openssh

# for git-related tests
git
];

ZSTD_SYS_USE_PKG_CONFIG = "1";
LIBSSH2_SYS_USE_PKG_CONFIG = "1";
Expand Down Expand Up @@ -178,6 +183,9 @@
gnupg
openssh

# For git-related tests
git

# For building the documentation website
poetry
] ++ darwinDeps ++ linuxNativeDeps;
Expand Down

0 comments on commit c7b6f72

Please sign in to comment.