ncncd: unstable-2023-10-26 -> unstable-2024-01-16

All our modifications have been merged upstream. There's no need to
point to the Nix Community fork anymore, pointing to
upstream (twosigma) instead.

Fixes #282485
This commit is contained in:
Félix Baylac Jacqué 2024-01-22 14:57:47 +01:00
parent 90edbf1dd4
commit cf3391dc01

View File

@ -7,19 +7,22 @@
rustPlatform.buildRustPackage rec {
pname = "nsncd";
version = "unstable-2023-10-26";
version = "unstable-2024-01-16";
# https://github.com/twosigma/nsncd/pull/71 has not been upstreamed
# to twosigma/nsncd yet. Using the nix-community fork in the
# meantime.
src = fetchFromGitHub {
owner = "nix-community";
owner = "twosigma";
repo = "nsncd";
rev = "d6513421f420e407248c6d0aee39ae2f861a7cec";
hash = "sha256-PykzwpPxMDHJOr2HubXuw+Krk9Jbi0E3M2lEAOXhx2M=";
rev = "f4706786f26d12c533035fb2916be9be5751150b";
hash = "sha256-GbKDWW00eZZwmslkaGIO8hjCyD5xi7h+S2WP6q5ekOQ=";
};
cargoSha256 = "sha256-cUM7rYXWpJ0aMiurXBp15IlxAmf/x5uiodxEqBPCQT0=";
cargoSha256 = "sha256-jAxcyMPDTBFBrG0cuKm0Tm5p/UEnUgTPQKDgqY2yK7w=";
checkFlags = [
# Relies on the test environment to be able to resolve "localhost"
# on IPv4. That's not the case in the Nix sandbox somehow. Works
# when running cargo test impurely on a (NixOS|Debian) machine.
"--skip=ffi::test_gethostbyname2_r"
];
meta = with lib; {
description = "the name service non-caching daemon";