synix/templates/dev/c-hello/flake.nix
sid 95a533c876
All checks were successful
Deploy docs / build-and-deploy (push) Successful in 3s
initial commit
2026-02-23 20:34:35 +01:00

144 lines
3.5 KiB
Nix

{
description = "A hello world template in C";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
self,
nixpkgs,
pre-commit-hooks,
...
}:
let
pname = "hello-world"; # Also change this in the Makefile
version = "0.1.0";
supportedSystems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
nixpkgsFor = forAllSystems (
system:
import nixpkgs {
inherit system;
overlays = [ self.overlays.default ];
}
);
in
{
overlays.default = final: prev: {
"${pname}" = final.stdenv.mkDerivation rec {
inherit pname version;
src = ./.;
installPhase = ''
mkdir -p $out/bin
cp build/${pname} $out/bin/
'';
};
};
packages = forAllSystems (system: {
default = nixpkgsFor.${system}."${pname}";
"${pname}" = nixpkgsFor.${system}."${pname}";
});
devShells = forAllSystems (
system:
let
pkgs = nixpkgsFor.${system};
in
{
default = pkgs.mkShell {
buildInputs =
self.checks.${system}.pre-commit-check.enabledPackages
++ (with pkgs; [
bear
coreutils
gcc
gdb
gnumake
]);
shellHook = self.checks.${system}.pre-commit-check.shellHook + ''
export LD_LIBRARY_PATH=${pkgs.stdenv.cc.cc.lib}/lib:$LD_LIBRARY_PATH
'';
};
}
);
formatter = forAllSystems (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
config = self.checks.${system}.pre-commit-check.config;
inherit (config) package configFile;
script = ''
${pkgs.lib.getExe package} run --all-files --config ${configFile}
'';
in
pkgs.writeShellScriptBin "pre-commit-run" script
);
checks = forAllSystems (
system:
let
pkgs = nixpkgsFor.${system};
flakePkgs = self.packages.${system};
in
{
build-packages = pkgs.linkFarm "flake-packages-${system}" flakePkgs;
integration-test =
let
exe = "${flakePkgs.${pname}}/bin/${pname}";
in
pkgs.runCommand "${pname}-test"
{
nativeBuildInputs = [
pkgs.synixutils
flakePkgs.${pname}
];
}
''
assert_equal() {
if [[ "$1" != "$2" ]]; then
echo "Test failed: Expected '$1' but got '$2'"
exit 1
fi
}
exp1="Hello, world!"
out1="$(${exe})"
assert_equal "$exp1" "$out1"
echo "Test passed!" > $out
'';
pre-commit-check = pre-commit-hooks.lib.${system}.run {
src = ./.;
hooks = {
nixfmt = {
enable = true;
};
clang-format = {
enable = true;
types_or = nixpkgs.lib.mkForce [ "c" ];
};
};
};
}
);
};
}