nixpkgs/pkgs/development/libraries/matio/default.nix
R. RyanTM 1d5b938eb5 matio: 1.5.12 -> 1.5.13 (#49263)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/matio/versions
2018-10-27 11:52:30 -04:00

17 lines
477 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "matio-1.5.13";
src = fetchurl {
url = "mirror://sourceforge/matio/${name}.tar.gz";
sha256 = "1jz5760jn1cifr479znhmzksi8fp07j99jd8xdnxpjd79gsv5bgy";
};
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/;
};
}