summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/lacaml
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2020-04-20 15:50:55 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2020-04-20 16:02:43 -0500
commitff2f2644f8ea1b364dde5dfee2bc76027afccaf9 (patch)
tree8d8fac67684fe7c66ec55e784af6c624bd308f98 /pkgs/development/ocaml-modules/lacaml
parentf86d582ea7cdf9c969f2294d9dc953f36f2a63e9 (diff)
downloadnixpkgs-ff2f2644f8ea1b364dde5dfee2bc76027afccaf9.tar
nixpkgs-ff2f2644f8ea1b364dde5dfee2bc76027afccaf9.tar.gz
nixpkgs-ff2f2644f8ea1b364dde5dfee2bc76027afccaf9.tar.bz2
nixpkgs-ff2f2644f8ea1b364dde5dfee2bc76027afccaf9.tar.lz
nixpkgs-ff2f2644f8ea1b364dde5dfee2bc76027afccaf9.tar.xz
nixpkgs-ff2f2644f8ea1b364dde5dfee2bc76027afccaf9.tar.zst
nixpkgs-ff2f2644f8ea1b364dde5dfee2bc76027afccaf9.zip
blas,lapack: use isILP64 instead of is64bit
This is a better name since we have multiple 64-bit things that could
be referred to.

LP64  : integer=32, long=64, pointer=64
ILP64 : integer=64, long=64, pointer=64
Diffstat (limited to 'pkgs/development/ocaml-modules/lacaml')
-rw-r--r--pkgs/development/ocaml-modules/lacaml/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/lacaml/default.nix b/pkgs/development/ocaml-modules/lacaml/default.nix
index e4da2216a83..23b38e469b4 100644
--- a/pkgs/development/ocaml-modules/lacaml/default.nix
+++ b/pkgs/development/ocaml-modules/lacaml/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchFromGitHub, darwin, ocaml, findlib, dune, base, stdio, lapack, blas }:
 
 assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.05.0";
-assert (!blas.is64bit) && (!lapack.is64bit);
+assert (!blas.isILP64) && (!lapack.isILP64);
 
 stdenv.mkDerivation rec {
   pname = "ocaml${ocaml.version}-lacaml";