Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #35914 from ryantm/auto-update/nanoflann-1.1.9-to-1.2.3

nanoflann: 1.1.9 -> 1.2.3

authored by Jörg Thalheim and committed by GitHub 1aa59bfd d8bc997d

+2 -2
+2 -2
pkgs/development/libraries/nanoflann/default.nix
··· 1 1 {stdenv, fetchFromGitHub, cmake}: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "1.1.9"; 4 + version = "1.2.3"; 5 5 name = "nanoflann-${version}"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "jlblancoc"; 9 9 repo = "nanoflann"; 10 10 rev = "v${version}"; 11 - sha256 = "1q588cf2aark45bp4ciqjiz3dkdv8dcijkhm1ybzs8qjdzz9fimn"; 11 + sha256 = "1jrh73kjvdv7s7zc1sc3z254i17lpvn77b19wx32nvzsfxs4g44i"; 12 12 }; 13 13 14 14 buildInputs = [ cmake ];