tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
m4rie: init at 20150908
Timo Kaufmann
7 years ago
7d625f6c
077bf8de
+41
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
science
math
m4rie
default.nix
top-level
all-packages.nix
+39
pkgs/development/libraries/science/math/m4rie/default.nix
···
1
1
+
{ stdenv
2
2
+
, fetchFromBitbucket
3
3
+
, autoreconfHook
4
4
+
, m4ri
5
5
+
}:
6
6
+
7
7
+
stdenv.mkDerivation rec {
8
8
+
version = "20150908";
9
9
+
name = "m4rie-${version}";
10
10
+
11
11
+
src = fetchFromBitbucket {
12
12
+
owner = "malb";
13
13
+
repo = "m4rie";
14
14
+
rev = "release-${version}";
15
15
+
sha256 = "0r8lv46qx5mkz5kp3ay2jnsp0mbhlqr5z2z220wdk73wdshcznss";
16
16
+
};
17
17
+
18
18
+
doCheck = true;
19
19
+
20
20
+
buildInputs = [
21
21
+
m4ri
22
22
+
];
23
23
+
24
24
+
nativeBuildInputs = [
25
25
+
autoreconfHook
26
26
+
];
27
27
+
28
28
+
meta = with stdenv.lib; {
29
29
+
homepage = https://malb.bitbucket.io/m4rie/;
30
30
+
description = "Library for matrix multiplication, reduction and inversion over GF(2^k) for 2 <= k <= 10";
31
31
+
longDescription = ''
32
32
+
M4RIE is a library for fast arithmetic with dense matrices over small finite fields of even characteristic.
33
33
+
It uses the M4RI library, implementing the same operations over the finite field F2.
34
34
+
'';
35
35
+
license = licenses.gpl2Plus;
36
36
+
maintainers = with maintainers; [ timokau ];
37
37
+
platforms = platforms.linux;
38
38
+
};
39
39
+
}
+2
pkgs/top-level/all-packages.nix
···
19783
19783
19784
19784
m4ri = callPackage ../development/libraries/science/math/m4ri { };
19785
19785
19786
19786
+
m4rie = callPackage ../development/libraries/science/math/m4rie { };
19787
19787
+
19786
19788
nasc = callPackage ../applications/science/math/nasc { };
19787
19789
19788
19790
openblas = callPackage ../development/libraries/science/math/openblas { };