mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
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:
parent
2151abb92d
commit
c9dff002a3
16
pkgs/development/libraries/matio/default.nix
Normal file
16
pkgs/development/libraries/matio/default.nix
Normal 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/;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user