An ATproto social media client -- with an independent Appview.
at main 512 B view raw
1# stolen from https://github.com/tgirlcloud/nix-templates/blob/main/node/default.nix 2{ lib, buildNpmPackage }: 3 4buildNpmPackage { 5 pname = "shatteredsky-social"; 6 version = "0.1.0"; 7 8 src = ./.; 9 10 npmDepsHash = lib.fakeHash; 11 12 meta = { 13 description = "social-app fork with alternative appview; toggles from deer/zepplin; catppuccin'd "; 14 homepage = "https://github.com/Teqed/social-app"; 15 license = lib.licenses.mit; 16 maintainers = with lib.maintainers; [ ]; 17 mainProgram = "example"; 18 }; 19}