Unverified Commit 5680bc1e authored by Seth Flynn's avatar Seth Flynn Committed by GitHub
Browse files

systemd-netlogd: 1.4.3 -> 1.4.4 (#373866)

parents bfb9fffc 69632d2b
Loading
Loading
Loading
Loading
+10 −5
Original line number Diff line number Diff line
@@ -13,12 +13,13 @@
  sphinx,
  systemd,
  systemdLibs,
  testers,
  opensslSupport ? true,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "systemd-netlogd";
  version = "1.4.3";
  version = "1.4.4";

  outputs = [
    "out"
@@ -29,7 +30,7 @@ stdenv.mkDerivation (finalAttrs: {
    owner = "systemd";
    repo = "systemd-netlogd";
    tag = "v${finalAttrs.version}";
    hash = "sha256-NwDmNrq2rLing5BQrSXoNDErcLK0Q8go9TN9zLSW5rE=";
    hash = "sha256-Kgr6KZp2SSLG8xnqXNWsDgIa9rNnBGcN+TkuAbr+yAA=";
  };

  # Fixup a few installation paths
@@ -69,7 +70,11 @@ stdenv.mkDerivation (finalAttrs: {

  passthru = {
    # Make sure x86_64-linux -> aarch64-linux cross compilation works
    tests = lib.optionalAttrs (stdenv.buildPlatform.system == "x86_64-linux") {
    tests =
      {
        version = testers.testVersion { package = finalAttrs.finalPackage; };
      }
      // lib.optionalAttrs (stdenv.buildPlatform.system == "x86_64-linux") {
        aarch64-cross = pkgsCross.aarch64-multiplatform.systemd-netlogd;
      };