mirror of
https://gitlab.com/simple-nixos-mailserver/nixos-mailserver.git
synced 2024-11-11 19:39:16 +05:00
10 lines
267 B
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
|
||
|
];
|
||
|
}
|