docspell/website/shell.nix

20 lines
484 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
};
2024-03-09 00:28:44 +00:00
pkgs = import nixpkgs {};
2020-07-27 20:13:22 +00:00
in
2024-03-09 00:28:44 +00:00
with pkgs;
mkShell {
buildInputs = [
zola
yarn
sbt
elmPackages.elm
nodejs
inotifyTools
];
}