Merge 959b0fc7171b1057c1ecb3dbdc5d051152fb33c3 into 8ee857c908b03f920fbb7fc1081afce46847403e

This commit is contained in:
Ivan FB 2026-04-24 19:59:49 +00:00 committed by GitHub
commit e853437b84
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;
};
});
})
];
}
);