Skip to content

Commit

Permalink
apk-tools: don't pin to openssl_1_1
Browse files Browse the repository at this point in the history
  • Loading branch information
ajs124 authored and alyssais committed Jan 18, 2023
1 parent a3fcaf4 commit c8b20e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion pkgs/tools/package-management/apk-tools/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ stdenv.mkDerivation rec {
"PKGCONFIGDIR=$(out)/lib/pkgconfig"
];

NIX_CFLAGS_COMPILE = [ "-Wno-error=unused-result" ];
NIX_CFLAGS_COMPILE = [
"-Wno-error=unused-result"
"-Wno-error=deprecated-declarations"
];

enableParallelBuilding = true;

Expand Down
1 change: 0 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2542,7 +2542,6 @@ with pkgs;

apk-tools = callPackage ../tools/package-management/apk-tools {
lua = lua5_3;
openssl = openssl_1_1;
};

apkid = callPackage ../development/tools/apkid { };
Expand Down

0 comments on commit c8b20e1

Please sign in to comment.