2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, cmake, hdf5 }:
|
2018-05-28 19:52:55 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "medfile";
|
2022-07-31 23:27:20 +00:00
|
|
|
version = "4.1.1";
|
2018-05-28 19:52:55 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://files.salome-platform.org/Salome/other/med-${version}.tar.gz";
|
2022-07-31 23:27:20 +00:00
|
|
|
sha256 = "sha256-3CtdVOvwZm4/8ul0BB0qsNqQYGEyNTcCOrFl1XM4ndA=";
|
2018-05-28 19:52:55 +00:00
|
|
|
};
|
|
|
|
|
2021-04-11 17:25:05 +00:00
|
|
|
patches = [
|
2023-02-27 23:16:09 +00:00
|
|
|
./hdf5-1.14.patch
|
2021-04-11 17:25:05 +00:00
|
|
|
];
|
|
|
|
|
2019-01-06 22:35:55 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ hdf5 ];
|
2018-05-28 19:52:55 +00:00
|
|
|
|
|
|
|
checkPhase = "make test";
|
|
|
|
|
|
|
|
postInstall = "rm -r $out/bin/testc";
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-05-28 19:52:55 +00:00
|
|
|
description = "Library to read and write MED files";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://salome-platform.org/";
|
2018-05-28 19:52:55 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
};
|
|
|
|
}
|