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, perl, gmp, mpfr, ocaml, findlib, camlidl, apron }:
|
||||
{ stdenv, lib, fetchurl, perl, gmp, mpfr, ocaml, findlib, camlidl, apron }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.1";
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
"--use-opam"
|
||||
"--apron-prefix" apron
|
||||
]
|
||||
++ stdenv.lib.optional stdenv.isDarwin "--absolute-dylibs"
|
||||
++ lib.optional stdenv.isDarwin "--absolute-dylibs"
|
||||
;
|
||||
|
||||
createFindlibDestdir = true;
|
||||
@@ -26,8 +26,8 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
description = "ETH LIbrary for Numerical Analysis";
|
||||
homepage = "http://elina.ethz.ch/";
|
||||
license = stdenv.lib.licenses.lgpl3;
|
||||
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
||||
license = lib.licenses.lgpl3;
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
inherit (ocaml.meta) platforms;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user