nixpkgs/pkgs/by-name/li/liboqs/package.nix

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

54 lines
1.3 KiB
Nix
Raw Normal View History

2024-04-30 03:54:10 +00:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
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
}:
2024-05-08 23:01:40 +00:00
stdenv.mkDerivation (finalAttrs: {
2023-01-31 09:14:23 +00:00
pname = "liboqs";
2024-10-08 16:06:26 +00:00
version = "0.11.0";
2023-01-31 09:14:23 +00:00
src = fetchFromGitHub {
owner = "open-quantum-safe";
2024-05-08 23:01:40 +00:00
repo = "liboqs";
rev = finalAttrs.version;
2024-10-08 16:06:26 +00:00
hash = "sha256-+Gx1JPrJoeMix9DIF0rJQTivxN1lgaCIYFvJ1pnYZzM=";
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 23:01:40 +00:00
nativeBuildInputs = [ cmake ];
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
2024-05-08 23:01:40 +00:00
outputs = [ "out" "dev" ];
2023-01-31 09:14:23 +00:00
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
};
2024-05-08 23:01:40 +00:00
})