docspell/website/shell.nix

16 lines
282 B
Nix
Raw Normal View History

2020-07-27 20:13:22 +00:00
let
2020-08-03 16:27:13 +00:00
nixpkgsUnstable = builtins.fetchTarball {
2020-07-27 20:13:22 +00:00
url = "https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz";
};
pkgsUnstable = import nixpkgsUnstable { };
in
with pkgsUnstable;
mkShell {
buildInputs = [
zola
yarn
inotifyTools
];
}