depot/third_party/nixpkgs/pkgs/development/libraries/medfile/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

25 lines
613 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";
};
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;
};
}