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,4 +1,4 @@
{ stdenv
{ lib, stdenv
, fetchurl
, fetchpatch
, gmp
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
mpir
mpfr
ntl
] ++ stdenv.lib.optionals withBlas [
] ++ lib.optionals withBlas [
openblas
];
propagatedBuildInputs = [
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
"--with-mpir=${mpir}"
"--with-mpfr=${mpfr}"
"--with-ntl=${ntl}"
] ++ stdenv.lib.optionals withBlas [
] ++ lib.optionals withBlas [
"--with-blas=${openblas}"
];
@@ -53,9 +53,9 @@ stdenv.mkDerivation rec {
meta = {
inherit version;
description = "Fast Library for Number Theory";
license = stdenv.lib.licenses.gpl2Plus;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.unix;
license = lib.licenses.gpl2Plus;
maintainers = [lib.maintainers.raskin];
platforms = lib.platforms.unix;
homepage = "http://www.flintlib.org/";
downloadPage = "http://www.flintlib.org/downloads.html";
updateWalker = true;