mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
13e96c16e4
Semi-automatic update. These checks were done: - built on NixOS - ran `/nix/store/252hdlnl6q9xajw71ydmpgi5nnybdc0n-matio-1.5.11/bin/matdump --help` got 0 exit code - ran `/nix/store/252hdlnl6q9xajw71ydmpgi5nnybdc0n-matio-1.5.11/bin/matdump help` got 0 exit code - ran `/nix/store/252hdlnl6q9xajw71ydmpgi5nnybdc0n-matio-1.5.11/bin/matdump -V` and found version 1.5.11 - ran `/nix/store/252hdlnl6q9xajw71ydmpgi5nnybdc0n-matio-1.5.11/bin/matdump --version` and found version 1.5.11 - found 1.5.11 with grep in /nix/store/252hdlnl6q9xajw71ydmpgi5nnybdc0n-matio-1.5.11 - found 1.5.11 in filename of file in /nix/store/252hdlnl6q9xajw71ydmpgi5nnybdc0n-matio-1.5.11
17 lines
477 B
Nix
17 lines
477 B
Nix
{ stdenv, fetchurl }:
|
|
stdenv.mkDerivation rec {
|
|
name = "matio-1.5.11";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/matio/${name}.tar.gz";
|
|
sha256 = "02ygr7bslzvn6mhxvapz57bh4d448xjf3ds82g1cvhn9al6fvk0c";
|
|
};
|
|
|
|
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/;
|
|
};
|
|
}
|