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

This commit is contained in:
Ben Siraphob
2021-01-22 00:00:13 +07:00
committed by Jonathan Ringer
parent 046d24424e
commit 66e44425c6
1770 changed files with 4913 additions and 4912 deletions

View File

@@ -1,8 +1,8 @@
{ stdenv, fetchurl, unzip, jre }:
{ lib, stdenv, fetchurl, unzip, jre }:
let
common = { pname, version, src, description
, prog ? null, jar ? null, license ? stdenv.lib.licenses.mpl20 }:
, prog ? null, jar ? null, license ? lib.licenses.mpl20 }:
stdenv.mkDerivation {
name = "${pname}-${version}";
inherit pname version src;
@@ -26,7 +26,7 @@ let
chmod a+x $out/bin/${prog'}
'';
meta = with stdenv.lib; {
meta = with lib; {
inherit description license;
homepage = "http://saxon.sourceforge.net/";
maintainers = with maintainers; [ rvl ];
@@ -44,7 +44,7 @@ in {
};
description = "XSLT 1.0 processor";
# http://saxon.sourceforge.net/saxon6.5.3/conditions.html
license = stdenv.lib.licenses.mpl10;
license = lib.licenses.mpl10;
};
saxonb_8_8 = common {