Skip to content

Commit

Permalink
matio: 1.5.27 -> 1.5.28 (#365141)
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda authored Dec 16, 2024
2 parents 5a15c1a + 509652f commit c7dcafc
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions pkgs/by-name/ma/matio/package.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
{
fetchurl,
lib,
stdenv,
}:

stdenv.mkDerivation (finalAttrs: {
pname = "matio";
version = "1.5.27";
version = "1.5.28";

src = fetchurl {
url = "mirror://sourceforge/matio/${pname}-${version}.tar.gz";
sha256 = "sha256-CmqgCxjEUStjqNJ5BrB5yMbtQdSyhE96SuWY4Y0i07M=";
url = "mirror://sourceforge/matio/matio-${finalAttrs.version}.tar.gz";
hash = "sha256-naaYk0ohVprwWOY0hWRmb0UCnmwrCHjKDY+WCb93uNg=";
};

meta = with lib; {
meta = {
changelog = "https://sourceforge.net/p/matio/news/";
description = "C library for reading and writing Matlab MAT files";
homepage = "http://matio.sourceforge.net/";
license = licenses.bsd2;
license = lib.licenses.bsd2;
maintainers = [ ];
mainProgram = "matdump";
platforms = platforms.all;
platforms = lib.platforms.all;
};
}
})

0 comments on commit c7dcafc

Please sign in to comment.