Merge 959b0fc7171b1057c1ecb3dbdc5d051152fb33c3 into 0dea35d3640ec6a600f485b37f9738e3a4f7efa0

This commit is contained in:
Ivan FB 2026-02-12 11:01:09 +00:00 committed by GitHub
commit e26ac19d7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 11 deletions

View File

@ -29,17 +29,6 @@ jobs:
- system: x86_64-linux
runs_on: [self-hosted, Linux, X64]
# Nimble segfaults on MacOS hosts.
exclude:
- system: aarch64-darwin
nixpkg: libsds-android-arm64
- system: aarch64-darwin
nixpkg: libsds-android-amd64
- system: aarch64-darwin
nixpkg: libsds-android-x86
- system: aarch64-darwin
nixpkg: libsds-android-arm
name: '${{ matrix.system }} / ${{ matrix.nixpkg }}'
runs-on: ${{ matrix.runs_on }}
steps:

View File

@ -35,6 +35,19 @@
androidPkgs = final.androidEnvCustom.pkgs;
androidShell = final.androidEnvCustom.shell;
})
(final: prev: {
nimble = prev.nimble.overrideAttrs (old: {
src = prev.fetchFromGitHub {
version = "0.22.0";
owner = "nim-lang";
repo = "nimble";
rev = "802e158ddce88c93367ebd9b3c66714b215a7928";
hash = "sha256-m0i6JOwdxvp33XAr9XJ1Daly+4DOLPTUDNXKCHJj3I8=";
fetchSubmodules = true;
};
});
})
];
}
);