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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
654 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, hdf5 }:
2018-05-28 19:52:55 +00:00
stdenv.mkDerivation rec {
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
};
patches = [
2023-02-27 23:16:09 +00:00
./hdf5-1.14.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;
};
}