Create publication script to create directory instead of link
hauleth.dev 4 months ago c30055bb 7e43b605
··· 24 24 }; 25 25 in 26 26 { 27 27 + apps.publish = let 28 28 + program = pkgs.writeShellScript "publish" '' 29 29 + cp -r ${self.packages.${system}.blog} public 30 30 + ''; 31 31 + in { 32 32 + type = "app"; 33 33 + program = "${program}"; 34 34 + }; 27 35 packages = { 28 36 inherit blog; 29 37 };