Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5420cb290466
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e84ac7ff3bc9
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 11, 2020

  1. nanoflann: 1.3.1 -> 1.3.2

    r-ryantm authored and Jonathan Ringer committed Nov 11, 2020
    Copy the full SHA
    fa1165d View commit details
  2. nanoflann: remove extra whitespace

    Jonathan Ringer committed Nov 11, 2020
    Copy the full SHA
    e84ac7f View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/libraries/nanoflann/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/libraries/nanoflann/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{stdenv, fetchFromGitHub, cmake}:

stdenv.mkDerivation rec {
version = "1.3.1";
version = "1.3.2";
pname = "nanoflann";

src = fetchFromGitHub {
owner = "jlblancoc";
repo = "nanoflann";
rev = "v${version}";
sha256 = "07vi3yn5y9zk9acdbxy954ghdml15wnyqfizzqwsw8zmc9bf30ih";
sha256 = "0lq1zqwjvk8wv15hd7aw57jsqbvv45cwb8ngdh1d2iyw5rvnbhsn";
};

buildInputs = [ cmake ];