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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
504 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
2021-06-20 14:15:21 +00:00
pname = "matio";
2022-03-27 05:19:42 +00:00
version = "1.5.22";
src = fetchurl {
2021-06-20 14:15:21 +00:00
url = "mirror://sourceforge/matio/${pname}-${version}.tar.gz";
2022-03-27 05:19:42 +00:00
sha256 = "sha256-gMPR4iLhFXaLV7feZAo30O58t6O9A52z6pQecfxSBMM=";
};
meta = with 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/";
};
}