pkgs/development/libraries: stdenv.lib -> lib
This commit is contained in:
committed by
Jonathan Ringer
parent
046d24424e
commit
66e44425c6
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user