mail2-nixos-config/nixos-mailserver/sieve-pipe-bin-dir.nix

15 lines
209 B
Nix
Raw Permalink Normal View History

2019-05-10 23:21:28 +02:00
{ stdenv}:
stdenv.mkDerivation rec {
name = "sieve-pipe-bin-dir";
src = ./sieve-pipe-bin-dir;
phases = [ "copyPhase" "fixupPhase" ];
copyPhase = ''
mkdir $out
cp -Rv $src/. $out/
'';
}