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

This commit is contained in:
Ben Siraphob
2021-01-23 19:26:19 +07:00
parent f6a583eeec
commit c522fec274
534 changed files with 1314 additions and 1314 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv
{ lib, stdenv
, fetchFromGitHub
, cmake
, pkg-config
@@ -26,9 +26,9 @@ stdenv.mkDerivation rec {
buildInputs = [
libftdi1
libusb-compat-0_1
] ++ stdenv.lib.optionals stdenv.isDarwin [ IOKit ];
] ++ lib.optionals stdenv.isDarwin [ IOKit ];
meta = with stdenv.lib; {
meta = with lib; {
description = "JTAG programmer for the ULX3S and ULX2S open hardware FPGA development boards";
homepage = "https://github.com/kost/fujprog";
license = licenses.bsd2;