pkgs/os-specific: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-17 23:26:08 +07:00
parent 979e6e67d3
commit 16d91ee628
212 changed files with 597 additions and 599 deletions
+5 -5
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, unzip }:
{ lib, stdenv, fetchurl, unzip }:
let
@@ -8,14 +8,14 @@ let
name = "lsiutil-${version}.zip";
url = "http://www.lsi.com/DistributionSystem/AssetDocument/support/downloads/hbas/fibre_channel/hardware_drivers/LSIUtil%20Kit_${version}.zip";
sha256 = "1d4337faa56e24f7d98db87b9de94d6e2c17ab671f4e301b93833eea08b9e426";
};
};
in
stdenv.mkDerivation {
pname = "lsiutils";
inherit version;
srcs = [ src "Source/lsiutil.tar.gz" ];
buildInputs = [ unzip ];
@@ -32,10 +32,10 @@ stdenv.mkDerivation {
'';
installPhase = "true";
meta = {
homepage = "http://www.lsi.com/";
description = "LSI Logic Fusion MPT command line management tool";
license = stdenv.lib.licenses.unfree;
license = lib.licenses.unfree;
};
}