docspell/website/shell.nix

17 lines
301 B
Nix
Raw Normal View History

2020-07-27 20:13:22 +00:00
let
nixpkgs = builtins.fetchTarball {
2021-08-11 16:23:38 +00:00
#url = "channel:nixos-21.05";
url = "https://github.com/NixOS/nixpkgs/archive/e6badb26fc0d238fda2432c45b7dd4e782eb8200.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
];
}