Merge pull request #306214 from b-rodrigues/fix_b64

rPackages.b64: fixed build
This commit is contained in:
Weijia Wang 2024-04-27 12:17:51 +02:00 committed by GitHub
commit 836c8c541e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -1145,6 +1145,11 @@ let
postPatch = "patchShebangs configure";
});
b64 = old.b64.overrideAttrs (attrs: {
nativeBuildInputs = [ pkgs.cargo ] ++ attrs.nativeBuildInputs;
postPatch = "patchShebangs configure";
});
data_table = old.data_table.overrideAttrs (attrs: {
env = (attrs.env or { }) // {
NIX_CFLAGS_COMPILE = attrs.env.NIX_CFLAGS_COMPILE + " -fopenmp";