nixos-mailserver/shell.nix

10 lines
267 B
Nix

{ nixpkgs ? <nixpkgs>, system ? builtins.currentSystem }:
with (import nixpkgs { inherit system; }); stdenv.mkDerivation rec {
name = "nixos-mailserver-env";
env = buildEnv { name = name; paths = buildInputs; };
buildInputs = with pkgs; [
jq clamav
];
}