mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
16 lines
284 B
Nix
16 lines
284 B
Nix
|
let
|
||
|
nixpkgsUnstable = builtins.fetchTarball {
|
||
|
url = "https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz";
|
||
|
};
|
||
|
pkgsUnstable = import nixpkgsUnstable { };
|
||
|
in
|
||
|
with pkgsUnstable;
|
||
|
|
||
|
mkShell {
|
||
|
buildInputs = [
|
||
|
zola
|
||
|
yarn
|
||
|
inotifyTools
|
||
|
];
|
||
|
}
|