Commit db894a92 authored by Vaci's avatar Vaci
Browse files

aeron, aeron-cpp: 1.43.0 -> 1.44.1

parent 9262fa56
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -17,14 +17,14 @@
let
  version = aeron.version;

  sbeAll_1_30_0 = fetchMavenArtifact {
  sbeAll_1_31_1 = fetchMavenArtifact {
    groupId = "uk.co.real-logic";
    version = "1.30.0";
    version = "1.31.1";
    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

@@ -36,7 +36,7 @@ stdenv.mkDerivation {
    owner = "real-logic";
    repo = "aeron";
    rev = version;
    hash = "sha256-MY7I8Cw1izVLW3/JWav9zPIBJTGInZHwAZT2e7tI9F0=";
    hash = "sha256-sROEZVOfScrlqMLbfrPtw3LQCQ5TfMcrLiP6j/Z9rSM=";
  };

  patches = [
@@ -98,7 +98,7 @@ stdenv.mkDerivation {
        aeron_driver_static \
        aeronmd

      make -j $NIX_BUILD_CORES install
      make install
    )

    runHook postBuild
+17 −3
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@

let
  pname = "aeron";
  version = "1.43.0";
  version = "1.44.1";
  groupId = "io.aeron";

  aeronAll_1_40_0 = fetchMavenArtifact {
@@ -53,8 +53,22 @@ let
    hash = "sha512-a/ti4Kd8WwzOzDGMgdYk0pxsu8vRA4kRD9cm4D3S+r6xc/rL8ECHVoogOMDeabDd1EYSIbx/sKE01BJOW7BVsg==";
  };

  aeronAll = aeronAll_1_43_0;
  aeronSamples = aeronSamples_1_43_0;
  aeronAll_1_44_1 = fetchMavenArtifact {
    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 {