docspell/website/shell.nix

17 lines
306 B
Nix
Raw Normal View History

2020-07-27 20:13:22 +00:00
let
nixpkgs = builtins.fetchTarball {
## need fix to zola-0.11.0 for now
url = "https://github.com/NixOS/nixpkgs/archive/92e990a8d6bc35f1089c76dd8ba68b78da90da59.tar.gz";
2020-07-27 20:13:22 +00:00
};
pkgs = import nixpkgs { };
2020-07-27 20:13:22 +00:00
in
with pkgs;
2020-07-27 20:13:22 +00:00
mkShell {
buildInputs = [
zola
yarn
inotifyTools
];
}