docspell/website/shell.nix
Eike Kettner 9b41ffe008 Fix zola version to 0.11.0
The newest version breaks inclusion of files in markdown.
2020-09-11 23:20:12 +02:00

16 lines
308 B
Nix

let
nixpkgsUnstable = builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs-channels/archive/92e990a8d6bc35f1089c76dd8ba68b78da90da59.tar.gz";
};
pkgsUnstable = import nixpkgsUnstable { };
in
with pkgsUnstable;
mkShell {
buildInputs = [
zola
yarn
inotifyTools
];
}