projet-modelisation-geometr.../flake.nix
2023-12-17 16:16:59 +01:00

35 lines
876 B
Nix

{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs = inputs@{ nixpkgs, flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" "aarch64-linux" ];
perSystem = { pkgs, system, ... }: {
devShells.default = pkgs.mkShell { packages = with pkgs; [ pandoc ]; };
packages.report = pkgs.stdenvNoCC.mkDerivation {
name = "report";
src = ./docs;
dontUnpack = true;
buildInputs = with pkgs; [ pandoc ];
buildPhase = ''
pandoc $src/rapport.md -s -o index.html --katex
'';
installPhase = ''
mkdir -p $out
cp -r $src/figs $out/figs
cp index.html $out/index.html
'';
};
};
};
}