mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
libff: init at 1.0.0
This commit is contained in:
parent
02befe5f15
commit
304fe564a1
28
pkgs/development/libraries/libff/default.nix
Normal file
28
pkgs/development/libraries/libff/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ 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" ];
|
||||
|
||||
nativeBuildInputs = [ cmake pkg-config ];
|
||||
buildInputs = [ boost gmp openssl ];
|
||||
|
||||
meta = with stdenv.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 ];
|
||||
};
|
||||
}
|
@ -14010,6 +14010,8 @@ in
|
||||
|
||||
libfixposix = callPackage ../development/libraries/libfixposix {};
|
||||
|
||||
libff = callPackage ../development/libraries/libff { };
|
||||
|
||||
libffcall = callPackage ../development/libraries/libffcall { };
|
||||
|
||||
libffi = callPackage ../development/libraries/libffi { };
|
||||
|
Loading…
Reference in New Issue
Block a user