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
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, cmake, boost, gtest }:
{ lib, stdenv, fetchurl, cmake, boost, gtest }:
stdenv.mkDerivation rec {
pname = "lucene++";
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
meta = {
description = "C++ port of the popular Java Lucene search engine";
homepage = "https://github.com/luceneplusplus/LucenePlusPlus";
license = with stdenv.lib.licenses; [ asl20 lgpl3Plus ];
platforms = stdenv.lib.platforms.linux;
license = with lib.licenses; [ asl20 lgpl3Plus ];
platforms = lib.platforms.linux;
};
}