mirror of
https://github.com/szymon-jozef/static-site-generator.git
synced 2026-09-07 12:10:42 +02:00
31 lines
437 B
Nix
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
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|