nixpkgs/pkgs/development/libraries/medfile/default.nix

30 lines
655 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, hdf5 }:
2018-05-28 19:52:55 +00:00
stdenv.mkDerivation rec {
pname = "medfile";
2020-08-06 15:16:00 +00:00
version = "4.1.0";
2018-05-28 19:52:55 +00:00
src = fetchurl {
url = "http://files.salome-platform.org/Salome/other/med-${version}.tar.gz";
2020-08-06 15:16:00 +00:00
sha256 = "1khzclkrd1yn9mz3g14ndgpsbj8j50v8dsjarcj6kkn9zgbbazc4";
2018-05-28 19:52:55 +00:00
};
patches = [
./hdf5-1.12.patch
];
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";
meta = with lib; {
2018-05-28 19:52:55 +00:00
description = "Library to read and write MED files";
homepage = "http://salome-platform.org/";
2018-05-28 19:52:55 +00:00
platforms = platforms.linux;
license = licenses.lgpl3Plus;
};
}