24 lines
546 B
Nix
24 lines
546 B
Nix
{
|
|
description = "Template for Pandoc Markdown";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
report-temp.url = "github:kenryuS/report-temp";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, flake-utils, report-temp }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
config = {};
|
|
overlays = [];
|
|
};
|
|
in
|
|
{
|
|
devShells.default = report-temp.devShells.${system}.pandoc;
|
|
}
|
|
);
|
|
}
|