nix flake add systems input
This commit is contained in:
parent
0a0a108b4f
commit
11630e54a2
33
flake.nix
33
flake.nix
|
@ -1,22 +1,38 @@
|
||||||
{
|
{
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
nixpkgs = {
|
||||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
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, ... }:
|
outputs = inputs @ {
|
||||||
flake-parts.lib.mkFlake { inherit inputs; } {
|
nixpkgs,
|
||||||
systems = [ "x86_64-linux" "aarch64-linux" ];
|
flake-parts,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
flake-parts.lib.mkFlake {inherit inputs;} {
|
||||||
|
systems = import inputs.systems;
|
||||||
|
|
||||||
perSystem = { pkgs, system, ... }: {
|
perSystem = {
|
||||||
devShells.default = pkgs.mkShell { packages = with pkgs; [ pandoc ]; };
|
pkgs,
|
||||||
|
system,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
devShells.default = pkgs.mkShell {packages = with pkgs; [pandoc];};
|
||||||
|
|
||||||
packages.report = pkgs.stdenvNoCC.mkDerivation {
|
packages.report = pkgs.stdenvNoCC.mkDerivation {
|
||||||
name = "report";
|
name = "report";
|
||||||
|
|
||||||
src = ./docs;
|
src = ./docs;
|
||||||
dontUnpack = true;
|
dontUnpack = true;
|
||||||
buildInputs = with pkgs; [ pandoc ];
|
buildInputs = with pkgs; [pandoc];
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
pandoc $src/rapport.md -s -o index.html --katex
|
pandoc $src/rapport.md -s -o index.html --katex
|
||||||
|
@ -31,4 +47,3 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue