blob: bd8d5605edaad9cbcaa46902d024f4c6c6b97b07 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
{ lib
, stdenv
, fetchFromGitHub
, unstableGitUpdater
, cmake
, blas
, gmp
, mpfr
, fplll
, eigen
, llvmPackages
}:
stdenv.mkDerivation {
pname = "flatter";
version = "0-unstable-2024-03-04";
src = fetchFromGitHub {
owner = "keeganryan";
repo = "flatter";
rev = "c2ed0ee94b6d281df7bcbce31ca275197ef9a562";
hash = "sha256-1Pjn0lANXaMOqlwwdOx6X/7jtAvfa2ZWa0nDfS3T5XU=";
};
strictDeps = true;
nativeBuildInputs = [
cmake
];
buildInputs = [
blas
gmp
mpfr
fplll
eigen
] ++ lib.optionals stdenv.isDarwin [
llvmPackages.openmp
];
passthru.updateScript = unstableGitUpdater { };
meta = with lib; {
description = "(F)ast (lat)tice (r)eduction of integer lattice bases";
homepage = "https://github.com/keeganryan/flatter";
license = licenses.lgpl3Only;
mainProgram = "flatter";
platforms = platforms.all;
maintainers = with maintainers; [ josephsurin ];
};
}
|