build: pushing flake env

This commit is contained in:
Raphael 2024-11-14 23:19:40 +01:00
parent 04b9c480b3
commit 2c01688e6d
2 changed files with 32 additions and 0 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use flake

31
flake.nix Normal file
View file

@ -0,0 +1,31 @@
{
description = "Flake utils demo";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
c_formatter_42.url = "github:maix0/c_formatter_42-flake";
};
outputs = {
self,
nixpkgs,
flake-utils,
c_formatter_42,
}:
flake-utils.lib.eachDefaultSystem (
system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
devShell = pkgs.mkShell {
packages = [
pkgs.xorg.libX11
pkgs.xorg.libXext
pkgs.clang
pkgs.clang-tools
pkgs.norminette
c_formatter_42.packages.${system}.default
];
};
}
);
}