2024-03-18 11:12:08 +00:00
|
|
|
{
|
|
|
|
description = "A basic flake with a shell";
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
|
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
|
|
let
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
devShell = pkgs.mkShell {
|
|
|
|
nativeBuildInputs = [ pkgs.bashInteractive ];
|
|
|
|
buildInputs = with pkgs; [
|
|
|
|
# building
|
|
|
|
gcc
|
|
|
|
cmake
|
|
|
|
ninja
|
|
|
|
sccache
|
|
|
|
|
2024-03-19 20:42:32 +00:00
|
|
|
# dependencies
|
|
|
|
qt6.full
|
|
|
|
libGL
|
|
|
|
|
2024-03-22 10:01:03 +00:00
|
|
|
# presentation
|
|
|
|
pandoc
|
|
|
|
texlive.combined.scheme-full
|
|
|
|
noto-fonts
|
|
|
|
latexrun
|
|
|
|
entr
|
|
|
|
|
2024-03-18 11:12:08 +00:00
|
|
|
# pre-commit
|
|
|
|
pre-commit
|
|
|
|
commitizen
|
|
|
|
];
|
|
|
|
|
|
|
|
shellHook = ''
|
|
|
|
pre-commit install --allow-missing-config --hook-type pre-commit --hook-type commit-msg
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|