-
Notifications
You must be signed in to change notification settings - Fork 1
/
lib.nix
50 lines (40 loc) · 934 Bytes
/
lib.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
let
genForAllSystems = nixpkgs: systems: function:
nixpkgs.lib.genAttrs
systems
(system: function nixpkgs.legacyPackages.${system});
ShellPkgs = pkgs: with pkgs; {
base = [
gnumake
gcc13
glibc
binutils
python310Packages.compiledb
];
debug = [ valgrind ltrace ];
testing = [ criterion gcovr ];
perf = [ kcachegrind graphviz ];
};
BuildEpitechCBinary = pkgs: info: pkgs.stdenv.mkDerivation ({
makeFlags = [ "CC=${pkgs.gcc13}/bin/gcc" ];
hardeningDisable = [ "format" "fortify" ];
buildPhase = ''
runHook preBuild
${pkgs.gnumake}/bin/make ${info.name}
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp ${info.name} $out/bin/${info.name}
runHook postInstall
'';
} // info);
in
{
inherit
genForAllSystems
ShellPkgs
BuildEpitechCBinary
;
}