mirror of
https://gitlab.com/simple-nixos-mailserver/nixos-mailserver.git
synced 2024-11-11 19:39:16 +05:00
781073b64d
The goal is to remove the WIKI since modifications can not be submitted via PRs.
12 lines
220 B
Nix
12 lines
220 B
Nix
let
|
|
nixpkgs = (import ./nix/sources.nix).nixpkgs-unstable;
|
|
pkgs = import nixpkgs {};
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
(python3.withPackages(p: [p.sphinx p.sphinx_rtd_theme]))
|
|
niv
|
|
jq clamav
|
|
];
|
|
}
|