Add Emitter (migrate from colmena)

This commit is contained in:
fruchti 2023-03-05 13:02:52 +01:00
parent bed4760a85
commit a559c6172c
49 changed files with 4567 additions and 0 deletions

8
packages/directory.nix Normal file
View file

@ -0,0 +1,8 @@
{ stdenv, name, source }:
stdenv.mkDerivation rec {
inherit name;
phases = [ "installPhase" ];
installPhase = ''
cp -R ${source} $out
'';
}