pull nixos-mailserver module into this repo
This commit is contained in:
parent
0b19cc8c6a
commit
284dd09a91
23 changed files with 1077 additions and 188 deletions
14
nixos-mailserver/sieve-pipe-bin-dir.nix
Normal file
14
nixos-mailserver/sieve-pipe-bin-dir.nix
Normal 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/
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue