summary refs log blame commit diff
path: root/pkgs/development/libraries/libff/default.nix
blob: 72d2406aa82bbd33302ecccc8bb2be89b868a4ff (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
                                                                         














                                                                    

                                                                                
                                                   


                                                                      


                                           
                    







                                                                               
{ lib, stdenv, fetchFromGitHub, cmake, boost, gmp, openssl, pkg-config }:

stdenv.mkDerivation rec {
  pname = "libff";
  version = "1.0.0";

  src = fetchFromGitHub {
    owner = "scipr-lab";
    repo = "libff";
    rev = "v${version}";
    sha256 = "0dczi829497vqlmn6n4fgi89bc2h9f13gx30av5z2h6ikik7crgn";
    fetchSubmodules = true;
  };

  cmakeFlags = [ "-DWITH_PROCPS=Off" ];

  # CMake is hardcoded to always build static library which causes linker
  # failure for Haskell applications depending on haskellPackages.hevm on macOS.
  postPatch = lib.optionalString stdenv.isDarwin ''
    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 ];
  };
}