docspell/website/shell.nix

21 lines
453 B
Nix
Raw Normal View History

2020-07-27 20:13:22 +00:00
let
nixpkgs = builtins.fetchTarball {
2023-11-13 16:36:02 +00:00
url = "channel:nixos-23.05";
2022-01-27 19:23:15 +00:00
#url = "https://github.com/NixOS/nixpkgs/archive/e6badb26fc0d238fda2432c45b7dd4e782eb8200.tar.gz";
2023-11-13 16:36:02 +00:00
#url = "https://github.com/NixOs/nixpkgs/archive/0f316e4d72daed659233817ffe52bf08e081b5de.tar.gz"; #21.11
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
2022-01-27 19:23:15 +00:00
sbt
elmPackages.elm
nodejs
2020-07-27 20:13:22 +00:00
inotifyTools
];
}