mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
6783b82fd5
Issue: #1120
17 lines
301 B
Nix
17 lines
301 B
Nix
let
|
|
nixpkgs = builtins.fetchTarball {
|
|
#url = "channel:nixos-21.05";
|
|
url = "https://github.com/NixOS/nixpkgs/archive/e6badb26fc0d238fda2432c45b7dd4e782eb8200.tar.gz";
|
|
};
|
|
pkgs = import nixpkgs { };
|
|
in
|
|
with pkgs;
|
|
|
|
mkShell {
|
|
buildInputs = [
|
|
zola
|
|
yarn
|
|
inotifyTools
|
|
];
|
|
}
|