nixpkgs/pkgs/by-name/m4/m4ri/package.nix
Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

33 lines
604 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
}:
stdenv.mkDerivation rec {
version = "20250128";
pname = "m4ri";
src = fetchFromGitHub {
owner = "malb";
repo = "m4ri";
rev = version;
hash = "sha256-YoCTI4dLy95xuRJyNugIzGxE40B9pCWxRQtsyS/1Pds=";
};
doCheck = true;
nativeBuildInputs = [
autoreconfHook
];
meta = with lib; {
homepage = "https://malb.bitbucket.io/m4ri/";
description = "Library to do fast arithmetic with dense matrices over F_2";
license = licenses.gpl2Plus;
teams = [ teams.sage ];
platforms = platforms.unix;
};
}