forked from mirrors/nixpkgs
Merge pull request #38762 from timokau/m4ri-init
m4ri: init at 20140914
This commit is contained in:
commit
077bf8de4c
30
pkgs/development/libraries/science/math/m4ri/default.nix
Normal file
30
pkgs/development/libraries/science/math/m4ri/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv
|
||||
, fetchFromBitbucket
|
||||
, autoreconfHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "20140914";
|
||||
name = "m4ri-${version}";
|
||||
|
||||
src = fetchFromBitbucket {
|
||||
owner = "malb";
|
||||
repo = "m4ri";
|
||||
rev = "release-${version}";
|
||||
sha256 = "0xfg6pffbn8r1s0y7bn9b8i55l00d41dkmhrpf7pwk53qa3achd3";
|
||||
};
|
||||
|
||||
doCheck = true;
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://malb.bitbucket.io/m4ri/;
|
||||
description = "Library to do fast arithmetic with dense matrices over F_2";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ timokau ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -19781,6 +19781,8 @@ with pkgs;
|
|||
|
||||
liblbfgs = callPackage ../development/libraries/science/math/liblbfgs { };
|
||||
|
||||
m4ri = callPackage ../development/libraries/science/math/m4ri { };
|
||||
|
||||
nasc = callPackage ../applications/science/math/nasc { };
|
||||
|
||||
openblas = callPackage ../development/libraries/science/math/openblas { };
|
||||
|
|
Loading…
Reference in a new issue