Adds matio-1.5.2

matio is an C library for reading and writing Matlab MAT files.

Homepage: http://matio.sourceforge.net/
This commit is contained in:
Vincent Laporte 2014-11-20 14:21:38 +00:00
parent 2151abb92d
commit c9dff002a3
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "matio-1.5.2";
src = fetchurl {
url = "mirror://sourceforge/matio/${name}.tar.gz";
sha256 = "0i8xj4g1gv50y6lj3s8hasjqspaawqbrnc06lrkdghvk6gxx00nv";
};
meta = with stdenv.lib; {
description = "A C library for reading and writing Matlab MAT files";
license = licenses.bsd2;
platforms = platforms.all;
maintainers = [ maintainers.vbgl ];
homepage = http://matio.sourceforge.net/;
};
}

View File

@ -6305,6 +6305,8 @@ let
lzo = callPackage ../development/libraries/lzo { };
matio = callPackage ../development/libraries/matio { };
mdds_0_7_1 = callPackage ../development/libraries/mdds/0.7.1.nix { };
mdds = callPackage ../development/libraries/mdds { };