medfile: move variable out of toplevel

This commit is contained in:
Guy Chronister
2026-06-03 18:41:55 -05:00
parent dda0131117
commit 79fb907ccc
2 changed files with 2 additions and 4 deletions
@@ -44,7 +44,7 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = [ cmake ];
buildInputs = [ hdf5 ];
buildInputs = [ (hdf5.override { apiVersion = "v110"; }) ];
checkPhase = "make test";
+1 -3
View File
@@ -2571,9 +2571,7 @@ with pkgs;
inherit (python3Packages) ansi2html;
};
medfile = callPackage ../development/libraries/medfile {
hdf5 = hdf5.override { apiVersion = "v110"; };
};
medfile = callPackage ../development/libraries/medfile { };
mhonarc = perlPackages.MHonArc;