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,11 +1,11 @@
{ stdenv, fetchurl, fetchFromGitHub, ocaml, findlib, ocamlbuild
{ lib, stdenv, fetchurl, fetchFromGitHub, ocaml, findlib, ocamlbuild
, buildDunePackage
}:
let
pname = "cppo";
meta = with stdenv.lib; {
meta = with lib; {
description = "The C preprocessor for OCaml";
longDescription = ''
Cppo is an equivalent of the C preprocessor targeted at the OCaml language and its variants.
@@ -17,7 +17,7 @@ let
in
if stdenv.lib.versionAtLeast ocaml.version "4.02" then
if lib.versionAtLeast ocaml.version "4.02" then
buildDunePackage rec {
inherit pname;