mirror of
https://github.com/szymon-jozef/static-site-generator.git
synced 2026-06-05 17:00:10 +02:00
27 lines
475 B
Nix
27 lines
475 B
Nix
{
|
|
description = "Static site generator in c++";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs =
|
|
{ self, nixpkgs }:
|
|
let
|
|
system = "x86_64-linux";
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in
|
|
{
|
|
devShells.${system}.default = pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
gcc
|
|
gnumake
|
|
md4c
|
|
catch2_3
|
|
clang-tools
|
|
gdb
|
|
];
|
|
};
|
|
};
|
|
}
|