pull nixos-mailserver module into this repo

This commit is contained in:
Daniel Frank 2024-05-20 20:59:26 +02:00
commit 284dd09a91
Signed by: tokudan
GPG key ID: 063CCCAD04182D32
23 changed files with 1077 additions and 188 deletions

View file

@ -0,0 +1,14 @@
{ stdenv}:
stdenv.mkDerivation rec {
name = "sieve-pipe-bin-dir";
src = ./sieve-pipe-bin-dir;
phases = [ "copyPhase" "fixupPhase" ];
copyPhase = ''
mkdir $out
cp -Rv $src/. $out/
'';
}