Skip to content

Commit

Permalink
Merge pull request NixOS#330681 from uninsane/pr-hiredis-cross
Browse files Browse the repository at this point in the history
hiredis: fix cross compilation
  • Loading branch information
Aleksanaa authored Aug 3, 2024
2 parents 9e6ea3d + 15fd5fb commit 38beb2e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/development/libraries/hiredis/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
stdenv.mkDerivation rec {
pname = "hiredis";
version = "1.2.0";
nativeBuildInputs = [openssl];

src = fetchFromGitHub {
owner = "redis";
Expand All @@ -12,6 +11,10 @@ stdenv.mkDerivation rec {
sha256 = "sha256-ZxUITm3OcbERcvaNqGQU46bEfV+jN6safPalG0TVfBg=";
};

buildInputs = [
openssl
];

PREFIX = "\${out}";
USE_SSL = 1;

Expand Down

0 comments on commit 38beb2e

Please sign in to comment.