about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/bc-decaf/default.nix
blob: c73f28e4e93ae28c7f2b8c3d6cee445473d1f4d5 (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
{ cmake
, fetchFromGitLab
, lib
, python3
, stdenv
}:

stdenv.mkDerivation rec {
  pname = "bc-decaf";
  version = "unstable-2022-07-20";

  nativeBuildInputs = [ cmake ];
  buildInputs = [
    python3
  ];

  src = fetchFromGitLab {
    domain = "gitlab.linphone.org";
    group = "BC";
    owner = "public/external";
    repo = "decaf";
    rev = "876ddb4d465c94f97beba1be450e8538d866cc5d";
    sha256 = "sha256-QFOAgLiPbG2ZdwKoCOrVD5/sPq9IH4rtAWnnk/rZWcs=";
  };

  # Do not build static libraries and do not enable -Werror
  cmakeFlags = [ "-DENABLE_STATIC=NO" "-DENABLE_STRICT=NO" ];

  meta = with lib; {
    description = "Elliptic curve library supporting Ed448-Goldilocks and Curve25519. Belledonne Communications' fork for Linphone.";
    homepage = "https://gitlab.linphone.org/BC/public/bctoolbox";
    license = licenses.mit;
    maintainers = with maintainers; [ thibaultlemaire ];
    platforms = platforms.linux;
  };
}