-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblake3.nix
61 lines (59 loc) · 1.45 KB
/
blake3.nix
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
pkgs,
lean4-nix,
blake3,
}: let
blake3Flags = pkgs.lib.concatStringsSep " " [
"-DBLAKE3_NO_SSE2"
"-DBLAKE3_NO_SSE41"
"-DBLAKE3_NO_AVX2"
"-DBLAKE3_NO_AVX512"
"-DBLAKE3_USE_NEON=0"
];
blake3Files = [
"blake3"
"blake3_dispatch"
"blake3_portable"
];
buildSteps =
builtins.map (file: "gcc -O3 -Wall -c ${blake3}/c/${file}.c -o ${file}.o ${blake3Flags}") blake3Files
++ [
"gcc -O3 -Wall -c ffi.c -o ffi.o -I ${pkgs.lean4}/include -I ${blake3}/c"
"ar rcs libblake3.a ${(builtins.concatStringsSep " " (builtins.map (str: "${str}.o") blake3Files))} ffi.o"
];
blake3-c = pkgs.stdenv.mkDerivation {
name = "blake3-c";
src = ./.;
buildInputs = [pkgs.gcc pkgs.lean.lean-all];
buildPhase = builtins.concatStringsSep "\n" buildSteps;
installPhase = ''
mkdir -p $out/lib $out/include
cp libblake3.a $out/lib/
cp ${blake3}/c/blake3.h $out/include/
'';
};
blake3-lib = pkgs.lean.buildLeanPackage {
name = "blake3-lib";
src = ./.;
roots = ["Blake3"];
linkFlags = ["-L${blake3-c}/lib" "-lblake3"];
groupStaticLibs = true;
};
blake3-test = pkgs.lean.buildLeanPackage {
name = "blake3-test";
src = ./.;
roots = ["Blake3Test"];
deps = [blake3-lib];
linkFlags = ["-L${blake3-c}/lib" "-lblake3"];
groupStaticLibs = true;
};
lib = {
inherit
blake3-c
blake3-lib
blake3-test
;
};
in {
inherit lib;
}