nix flake add systems input

This commit is contained in:
Laureηt 2024-01-01 13:26:33 +01:00
parent 0a0a108b4f
commit 11630e54a2
Signed by: Laurent
SSH key fingerprint: SHA256:kZEpW8cMJ54PDeCvOhzreNr4FSh6R13CMGH/POoO8DI

View file

@ -1,22 +1,38 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
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";
};
};
outputs = inputs@{ nixpkgs, flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" "aarch64-linux" ];
outputs = inputs @ {
nixpkgs,
flake-parts,
...
}:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = import inputs.systems;
perSystem = { pkgs, system, ... }: {
devShells.default = pkgs.mkShell { packages = with pkgs; [ pandoc ]; };
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 ];
buildInputs = with pkgs; [pandoc];
buildPhase = ''
pandoc $src/rapport.md -s -o index.html --katex
@ -31,4 +47,3 @@
};
};
}