Files
static-site-generator/flake.nix
2026-02-26 21:21:47 +01:00

31 lines
437 B
Nix

{
description = "Static site generator in c++";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs =
{
self,
nixpkgs,
}:
{
devShells = {
default = nixpkgs.mkShell {
packages = with nixpkgs; [
gcc
gnumake
md4c
catch2_3
clang-tools
gdb
];
};
};
};
}