nixpkgs/pkgs/development/libraries/matio/default.nix

17 lines
477 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2017-07-15 10:49:52 +01:00
name = "matio-1.5.10";
src = fetchurl {
url = "mirror://sourceforge/matio/${name}.tar.gz";
2017-07-15 10:49:52 +01:00
sha256 = "00dmg2f5k2xgakp7l0lganz122b1agazw5d899xci35xrqc9j821";
};
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/;
};
}