projet-intelligence-artific.../flake.nix

51 lines
1.1 KiB
Nix
Raw Normal View History

2023-11-26 22:44:13 +00:00
{
inputs = {
2024-01-01 12:24:39 +00:00
nixpkgs = {
url = "github:NixOS/nixpkgs/nixos-unstable";
};
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
systems = {
url = "github:nix-systems/default";
};
2023-11-26 22:44:13 +00:00
};
2024-01-01 12:24:39 +00:00
outputs = inputs @ {
nixpkgs,
flake-parts,
...
}:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = import inputs.systems;
2023-12-14 14:09:20 +00:00
2024-01-01 12:24:39 +00:00
perSystem = {
pkgs,
system,
...
}: {
2023-12-14 14:09:20 +00:00
devShells.default =
2024-01-01 12:24:39 +00:00
pkgs.mkShell {packages = with pkgs; [marp-cli];};
2023-11-26 22:44:13 +00:00
packages.slides = pkgs.stdenvNoCC.mkDerivation {
name = "slides";
src = ./docs;
dontUnpack = true;
2024-01-01 12:24:39 +00:00
buildInputs = with pkgs; [marp-cli];
2023-11-26 22:44:13 +00:00
buildPhase = ''
marp --html $src/slides.md --allow-local-files -o slides.html
'';
installPhase = ''
mkdir -p $out
2023-12-14 15:29:27 +00:00
cp -r $src/assets $out/assets
2023-11-26 22:44:13 +00:00
cp slides.html $out/index.html
'';
};
2023-12-14 14:09:20 +00:00
};
};
2023-11-26 22:44:13 +00:00
}