ocamlPackages: stdenv.lib → lib
This change was produced by searching for remaining occurrences of stdenv.lib and replacing them manually. Reference #108938.
This commit is contained in:
committed by
Profpatsch
parent
ff3057f61a
commit
4e42cac49d
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, ocaml, findlib, camlp4 }:
|
||||
{ stdenv, lib, fetchurl, ocaml, findlib, camlp4 }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ocaml-config-file-1.2";
|
||||
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
|
||||
homepage = "http://config-file.forge.ocamlcore.org/";
|
||||
platforms = ocaml.meta.platforms or [];
|
||||
description = "An OCaml library used to manage the configuration file(s) of an application";
|
||||
license = stdenv.lib.licenses.lgpl2Plus;
|
||||
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
||||
license = lib.licenses.lgpl2Plus;
|
||||
maintainers = with lib.maintainers; [ vbgl ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user