about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/medfile/default.nix
blob: 5a29a9219fb8b8f35132fde1fdf5d1c0a5d55adb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, cmake, hdf5 }:

stdenv.mkDerivation rec {
  name = "medfile-${version}";
  version = "3.3.1";

  src = fetchurl {
    url = "http://files.salome-platform.org/Salome/other/med-${version}.tar.gz";
    sha256 = "1215sal10xp6xirgggdszay2bmx0sxhn9pgh7x0wg2w32gw1wqyx";
  };

  buildInputs = [ cmake hdf5 ];

  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/;
    platforms = platforms.linux;
    license = licenses.lgpl3Plus;
  };
}