Skip to content

Commit

Permalink
Fix Libiconv
Browse files Browse the repository at this point in the history
  • Loading branch information
tvorogme committed Oct 1, 2024
1 parent 5271944 commit e68d4ec
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions assembly/nix/linux-arm64-static.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ stdenv.mkDerivation {
staticLibs.staticBoost
staticLibs.staticLibrdkafka
staticLibs.staticLZ4
staticLibs.staticLibiconv
];

makeStatic = true;
Expand Down
1 change: 1 addition & 0 deletions assembly/nix/linux-x86-64-static.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ stdenv.mkDerivation {
staticLibs.staticBoost
staticLibs.staticLibrdkafka
staticLibs.staticLZ4
staticLibs.staticLibiconv
];

makeStatic = true;
Expand Down
1 change: 1 addition & 0 deletions assembly/nix/macos-static.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ pkgs.llvmPackages_14.stdenv.mkDerivation {
pkgsStatic.boost
staticLibs.staticLibrdkafka
staticLibs.staticLZ4
staticLibs.staticLibiconv
];


Expand Down
1 change: 1 addition & 0 deletions assembly/nix/static-libs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ let
});

staticLZ4 = (pkgs.lz4.override { enableStatic = true; enableShared = false; }).dev;
staticLibiconv = (libiconv.override { enableStatic = true; enableShared = false; });
in
{
inherit staticBoost staticLibrdkafka staticLZ4;
Expand Down

0 comments on commit e68d4ec

Please sign in to comment.