pkgs/development/libraries: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-21 19:11:02 -08:00
committed by Jonathan Ringer
parent 046d24424e
commit 66e44425c6
1770 changed files with 4913 additions and 4912 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, fetchpatch, unzip, cmake, python }:
{ lib, stdenv, fetchFromGitHub, fetchpatch, unzip, cmake, python }:
stdenv.mkDerivation {
name = "flann-1.9.1";
@@ -22,9 +22,9 @@ stdenv.mkDerivation {
meta = {
homepage = "http://people.cs.ubc.ca/~mariusm/flann/";
license = stdenv.lib.licenses.bsd3;
license = lib.licenses.bsd3;
description = "Fast approximate nearest neighbor searches in high dimensional spaces";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux ++ darwin;
maintainers = with lib.maintainers; [viric];
platforms = with lib.platforms; linux ++ darwin;
};
}