nixpkgs/pkgs/development/libraries/matio/default.nix
R. RyanTM 84af16a547 matio: 1.5.11 -> 1.5.12
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.

These checks were done:

- built on NixOS
- ran `/nix/store/g0zdli6b3hzmnwdzyq1jblh89kqvxaqw-matio-1.5.12/bin/matdump --help` got 0 exit code
- ran `/nix/store/g0zdli6b3hzmnwdzyq1jblh89kqvxaqw-matio-1.5.12/bin/matdump -V` and found version 1.5.12
- ran `/nix/store/g0zdli6b3hzmnwdzyq1jblh89kqvxaqw-matio-1.5.12/bin/matdump --version` and found version 1.5.12
- found 1.5.12 with grep in /nix/store/g0zdli6b3hzmnwdzyq1jblh89kqvxaqw-matio-1.5.12
- directory tree listing: https://gist.github.com/d5648482494f82e4d49cc3aea608b4fa
2018-03-31 02:58:10 -07:00

17 lines
477 B
Nix

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