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

28 lines
649 B
Nix
Raw Normal View History

2018-05-28 20:52:55 +01:00
{ stdenv, fetchurl, cmake, hdf5 }:
stdenv.mkDerivation rec {
pname = "medfile";
2019-01-06 22:35:55 +00:00
version = "4.0.0";
2018-05-28 20:52:55 +01:00
src = fetchurl {
url = "http://files.salome-platform.org/Salome/other/med-${version}.tar.gz";
2019-01-06 22:35:55 +00:00
sha256 = "017h9p0x533fm4gn6pwc8kmp72rvqmcn6vznx72nkkl2b05yjx54";
2018-05-28 20:52:55 +01:00
};
2019-01-06 22:35:55 +00:00
enableParallelBuilding = true;
nativeBuildInputs = [ cmake ];
buildInputs = [ hdf5 ];
2018-05-28 20:52:55 +01:00
checkPhase = "make test";
postInstall = "rm -r $out/bin/testc";
meta = with stdenv.lib; {
description = "Library to read and write MED files";
homepage = "http://salome-platform.org/";
2018-05-28 20:52:55 +01:00
platforms = platforms.linux;
license = licenses.lgpl3Plus;
};
}