nixpkgs/pkgs/development/libraries/medfile/default.nix
Thomas Gerbet 33a3715a5e medfile: use HDF5 1.12
HDF5 1.10 has known security issues (CVE-2020-10809, CVE-2020-10810, CVE-2020-10811
and CVE-2020-10812).
2021-04-11 19:27:28 +02:00

30 lines
655 B
Nix

{ lib, stdenv, fetchurl, cmake, hdf5 }:
stdenv.mkDerivation rec {
pname = "medfile";
version = "4.1.0";
src = fetchurl {
url = "http://files.salome-platform.org/Salome/other/med-${version}.tar.gz";
sha256 = "1khzclkrd1yn9mz3g14ndgpsbj8j50v8dsjarcj6kkn9zgbbazc4";
};
patches = [
./hdf5-1.12.patch
];
nativeBuildInputs = [ cmake ];
buildInputs = [ hdf5 ];
checkPhase = "make test";
postInstall = "rm -r $out/bin/testc";
meta = with lib; {
description = "Library to read and write MED files";
homepage = "http://salome-platform.org/";
platforms = platforms.linux;
license = licenses.lgpl3Plus;
};
}