nixpkgs/pkgs/development/libraries/liboqs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.3 KiB
Nix
Raw Normal View History

2024-04-30 03:54:10 +00:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
2024-05-08 22:55:46 +00:00
ninja,
2024-04-30 03:54:10 +00:00
openssl,
2024-05-08 22:55:46 +00:00
fetchpatch,
2024-04-30 03:54:10 +00:00
enableStatic ? stdenv.hostPlatform.isStatic,
2023-01-31 09:14:23 +00:00
}:
stdenv.mkDerivation rec {
pname = "liboqs";
2024-05-08 22:55:46 +00:00
version = "0.10.0";
2023-01-31 09:14:23 +00:00
src = fetchFromGitHub {
owner = "open-quantum-safe";
repo = pname;
rev = version;
2024-05-08 22:55:46 +00:00
sha256 = "sha256-BFDa5NUr02lFPcT4Hnb2rjGAi+2cXvh1SHLfqX/zLlI=";
2023-01-31 09:14:23 +00:00
};
2024-05-08 22:55:46 +00:00
patches = [
./fix-openssl-detection.patch
# liboqs.pc.in path were modified in this commit
# causing malformed path with double slashes.
(fetchpatch {
url = "https://github.com/open-quantum-safe/liboqs/commit/f0e6b8646c5eae0e8052d029079ed3efa498f220.patch";
hash = "sha256-tDfWzcDnFGikzq2ADEWiUgcUt1NSLWQ9/HVWA3rKuzc=";
revert = true;
})
];
2023-12-25 16:21:11 +00:00
2024-05-08 22:55:46 +00:00
nativeBuildInputs = [ cmake ninja ];
2023-01-31 09:14:23 +00:00
buildInputs = [ openssl ];
cmakeFlags = [
"-DBUILD_SHARED_LIBS=${if enableStatic then "OFF" else "ON"}"
"-DOQS_DIST_BUILD=ON"
"-DOQS_BUILD_ONLY_LIB=ON"
];
dontFixCmake = true; # fix CMake file will give an error
meta = with lib; {
description = "C library for prototyping and experimenting with quantum-resistant cryptography";
homepage = "https://openquantumsafe.org";
license = licenses.mit;
platforms = platforms.all;
2024-04-30 03:29:42 +00:00
maintainers = [ maintainers.sigmanificient ];
2023-01-31 09:14:23 +00:00
};
}