nsncd: 1.5.1 -> 1.5.2

We can remove the big endian test barrier, it's been fixed upstream by
https://github.com/twosigma/nsncd/pull/161.

Picnoir 9d0d5b87 afb89db0

+4 -11
+4 -11
pkgs/by-name/ns/nsncd/package.nix
··· 8 8 }: 9 9 10 10 let 11 - version = "1.5.1"; 11 + version = "1.5.2"; 12 12 in 13 13 14 14 rustPlatform.buildRustPackage { ··· 18 18 src = fetchFromGitHub { 19 19 owner = "twosigma"; 20 20 repo = "nsncd"; 21 - rev = "v${version}"; 22 - hash = "sha256-0cFCX5pKvYv6yr4+X5kXGz8clNi/LYndFtHaxSmHN+I="; 21 + tag = "v${version}"; 22 + hash = "sha256-HNg2pf6dUQW95B8x/xWa53+GZVWzpTMRVeqWT3dp/M8="; 23 23 }; 24 24 25 - cargoHash = "sha256-9M8Y0WwXFlrpRleSQPYDpnjNnxKGvrtO6Istl9qM30M="; 25 + cargoHash = "sha256-kjxRhrgKPLCKWc3/gOvdcmQX7IdxFLuwcV7DRZIte78="; 26 26 27 27 checkFlags = [ 28 28 # Relies on the test environment to be able to resolve "localhost" ··· 36 36 "--skip=handlers::test::test_handle_getservbyport_port" 37 37 "--skip=handlers::test::test_handle_getservbyport_port_proto" 38 38 "--skip=handlers::test::test_handle_getservbyport_port_proto_aliases" 39 - ] 40 - ++ lib.optionals stdenv.hostPlatform.isBigEndian [ 41 - # Expected serialisation output in tests doesn't account for endianness differences 42 - # https://github.com/twosigma/nsncd/issues/160 43 - "--skip=handlers::test::test_hostent_serialization" 44 - "--skip=handlers::test::test_innetgroup_serialization_in_group" 45 - "--skip=handlers::test::test_netgroup_serialization" 46 39 ]; 47 40 48 41 meta = with lib; {