Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
gmp,
|
|
openssl,
|
|
pkg-config,
|
|
enableStatic ? stdenv.hostPlatform.isStatic,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libff";
|
|
version = "0.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "scipr-lab";
|
|
repo = "libff";
|
|
tag = "v${version}";
|
|
sha256 = "0dczi829497vqlmn6n4fgi89bc2h9f13gx30av5z2h6ikik7crgn";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DWITH_PROCPS=Off"
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isAarch64 [
|
|
"-DCURVE=ALT_BN128"
|
|
"-DUSE_ASM=OFF"
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace CMakeLists.txt --replace "VERSION 2.8" "VERSION 3.10"
|
|
''
|
|
+ lib.optionalString (!enableStatic) ''
|
|
substituteInPlace libff/CMakeLists.txt --replace "STATIC" "SHARED"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
gmp
|
|
openssl
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "C++ library for Finite Fields and Elliptic Curves";
|
|
changelog = "https://github.com/scipr-lab/libff/blob/develop/CHANGELOG.md";
|
|
homepage = "https://github.com/scipr-lab/libff";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ arturcygan ];
|
|
};
|
|
}
|