diff options
Diffstat (limited to 'pkgs/development/libraries/libff/default.nix')
-rw-r--r-- | pkgs/development/libraries/libff/default.nix | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/pkgs/development/libraries/libff/default.nix b/pkgs/development/libraries/libff/default.nix deleted file mode 100644 index af2191fb4136..000000000000 --- a/pkgs/development/libraries/libff/default.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ lib, stdenv, fetchFromGitHub, cmake, boost, gmp, openssl, pkg-config -, enableStatic ? stdenv.hostPlatform.isStatic }: - -stdenv.mkDerivation rec { - pname = "libff"; - version = "0.2.1"; - - src = fetchFromGitHub { - owner = "scipr-lab"; - repo = "libff"; - rev = "v${version}"; - sha256 = "0dczi829497vqlmn6n4fgi89bc2h9f13gx30av5z2h6ikik7crgn"; - fetchSubmodules = true; - }; - - cmakeFlags = [ "-DWITH_PROCPS=Off" ] - ++ lib.optionals stdenv.isAarch64 [ "-DCURVE=ALT_BN128" "-DUSE_ASM=OFF" ]; - - postPatch = lib.optionalString (!enableStatic) '' - substituteInPlace libff/CMakeLists.txt --replace "STATIC" "SHARED" - ''; - - nativeBuildInputs = [ cmake pkg-config ]; - buildInputs = [ boost 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 ]; - }; -} |