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

authored by Seth Flynn and committed by GitHub 5680bc1e bfb9fffc

+10 -5
+10 -5
pkgs/by-name/sy/systemd-netlogd/package.nix
··· 13 sphinx, 14 systemd, 15 systemdLibs, 16 opensslSupport ? true, 17 }: 18 19 stdenv.mkDerivation (finalAttrs: { 20 pname = "systemd-netlogd"; 21 - version = "1.4.3"; 22 23 outputs = [ 24 "out" ··· 29 owner = "systemd"; 30 repo = "systemd-netlogd"; 31 tag = "v${finalAttrs.version}"; 32 - hash = "sha256-NwDmNrq2rLing5BQrSXoNDErcLK0Q8go9TN9zLSW5rE="; 33 }; 34 35 # Fixup a few installation paths ··· 69 70 passthru = { 71 # Make sure x86_64-linux -> aarch64-linux cross compilation works 72 - tests = lib.optionalAttrs (stdenv.buildPlatform.system == "x86_64-linux") { 73 - aarch64-cross = pkgsCross.aarch64-multiplatform.systemd-netlogd; 74 - }; 75 76 updateScript = nix-update-script { }; 77 };
··· 13 sphinx, 14 systemd, 15 systemdLibs, 16 + testers, 17 opensslSupport ? true, 18 }: 19 20 stdenv.mkDerivation (finalAttrs: { 21 pname = "systemd-netlogd"; 22 + version = "1.4.4"; 23 24 outputs = [ 25 "out" ··· 30 owner = "systemd"; 31 repo = "systemd-netlogd"; 32 tag = "v${finalAttrs.version}"; 33 + hash = "sha256-Kgr6KZp2SSLG8xnqXNWsDgIa9rNnBGcN+TkuAbr+yAA="; 34 }; 35 36 # Fixup a few installation paths ··· 70 71 passthru = { 72 # Make sure x86_64-linux -> aarch64-linux cross compilation works 73 + tests = 74 + { 75 + version = testers.testVersion { package = finalAttrs.finalPackage; }; 76 + } 77 + // lib.optionalAttrs (stdenv.buildPlatform.system == "x86_64-linux") { 78 + aarch64-cross = pkgsCross.aarch64-multiplatform.systemd-netlogd; 79 + }; 80 81 updateScript = nix-update-script { }; 82 };