Skip to content
This repository was archived by the owner on Oct 5, 2024. It is now read-only.

Commit 0614853

Browse files
committed
fix(nix): Use buildInputs and add libiconv
libiconv: `ld: library not found for -liconv` buildInputs: correction; propagatedBuildInputs is for test only
1 parent 0e12fee commit 0614853

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

flake.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@
3838
crate = crane'.buildPackage {
3939
src = ./.;
4040
nativeBuildInputs = [ pkgs.protobuf ];
41-
propagatedBuildInputs = [ pkgs.sqlite ];
41+
buildInputs = [
42+
pkgs.sqlite
43+
pkgs.libiconv
44+
];
4245
strictDeps = true;
4346
};
4447
in

0 commit comments

Comments
 (0)