mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
9b41ffe008
The newest version breaks inclusion of files in markdown.
16 lines
308 B
Nix
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
|
|
];
|
|
}
|