Merge pull request #305024 from vaci/vaci/aeron-144

aeron, aeron-cpp: 1.43.0 -> 1.44.1
This commit is contained in:
Peder Bergebakken Sundt 2024-04-22 16:24:32 +02:00 committed by GitHub
commit 06fc875337
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 23 additions and 9 deletions

View File

@ -17,14 +17,14 @@
let let
version = aeron.version; version = aeron.version;
sbeAll_1_30_0 = fetchMavenArtifact { sbeAll_1_31_1 = fetchMavenArtifact {
groupId = "uk.co.real-logic"; groupId = "uk.co.real-logic";
version = "1.30.0"; version = "1.31.1";
artifactId = "sbe-all"; artifactId = "sbe-all";
hash = "sha512-K/LMP6zNBHl2Wpvli/sH+ZsYwlTPJHHCKee7riOH6dR8nxTJgucnF7AsbVOpowR6xaV3wPjFh0iqWp/oerHKBg=="; hash = "sha512-Ypsk8PbShFOxm49u1L+TTuApaW6ECTSee+hHEhmY/jNi5AymHXBWwDMBMkzC25aowiHLJS5EnzLk6hu9Lea93Q==";
}; };
sbeAll = sbeAll_1_30_0; sbeAll = sbeAll_1_31_1;
in in
@ -36,7 +36,7 @@ stdenv.mkDerivation {
owner = "real-logic"; owner = "real-logic";
repo = "aeron"; repo = "aeron";
rev = version; rev = version;
hash = "sha256-MY7I8Cw1izVLW3/JWav9zPIBJTGInZHwAZT2e7tI9F0="; hash = "sha256-sROEZVOfScrlqMLbfrPtw3LQCQ5TfMcrLiP6j/Z9rSM=";
}; };
patches = [ patches = [
@ -98,7 +98,7 @@ stdenv.mkDerivation {
aeron_driver_static \ aeron_driver_static \
aeronmd aeronmd
make -j $NIX_BUILD_CORES install make install
) )
runHook postBuild runHook postBuild

View File

@ -8,7 +8,7 @@
let let
pname = "aeron"; pname = "aeron";
version = "1.43.0"; version = "1.44.1";
groupId = "io.aeron"; groupId = "io.aeron";
aeronAll_1_40_0 = fetchMavenArtifact { aeronAll_1_40_0 = fetchMavenArtifact {
@ -53,8 +53,22 @@ let
hash = "sha512-a/ti4Kd8WwzOzDGMgdYk0pxsu8vRA4kRD9cm4D3S+r6xc/rL8ECHVoogOMDeabDd1EYSIbx/sKE01BJOW7BVsg=="; hash = "sha512-a/ti4Kd8WwzOzDGMgdYk0pxsu8vRA4kRD9cm4D3S+r6xc/rL8ECHVoogOMDeabDd1EYSIbx/sKE01BJOW7BVsg==";
}; };
aeronAll = aeronAll_1_43_0; aeronAll_1_44_1 = fetchMavenArtifact {
aeronSamples = aeronSamples_1_43_0; inherit groupId;
artifactId = "aeron-all";
version = "1.44.1";
hash = "sha256-O80bWp7F6mRh3me1znzpfFfFEpvvMVjL4PrAt7+3Fq0=";
};
aeronSamples_1_44_1 = fetchMavenArtifact {
inherit groupId;
version = "1.44.1";
artifactId = "aeron-samples";
hash = "sha256-ZSuTed45BRzr4JJuGeXghUgEifv/FpnCzTNJWa+nwjo=";
};
aeronAll = aeronAll_1_44_1;
aeronSamples = aeronSamples_1_44_1;
in stdenv.mkDerivation { in stdenv.mkDerivation {