mirror of
https://github.com/szymon-jozef/static-site-generator.git
synced 2026-09-07 12:10:42 +02:00
add nix flake
This commit is contained in:
30
flake.nix
Normal file
30
flake.nix
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
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
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user