nixpkgs/pkgs/development/libraries/matio/default.nix
R. RyanTM 6f235bc812 matio: 1.5.13 -> 1.5.14
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
2019-03-26 08:12:27 +01:00

17 lines
477 B
Nix

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