tangled mirror of catsky-馃惐 Soothing soft social-app fork with all the niche toggles! (Unofficial); for issues and PRs please put them on github:NekoDrone/catsky-social
at main 513 B view raw
1# stolen from https://github.com/tgirlcloud/nix-templates/blob/main/node/default.nix 2{ lib, buildNpmPackage }: 3 4buildNpmPackage { 5 pname = "catsky-social"; 6 version = "0.1.0"; 7 8 src = ./.; 9 10 npmDepsHash = lib.fakeHash; 11 12 meta = { 13 description = "soft social-app fork with niche toggles stolen from deer/zepplin and catppuccin'd "; 14 homepage = "https://github.com/NekoDrone/catsky-social"; 15 license = lib.licenses.mit; 16 maintainers = with lib.maintainers; [ ]; 17 mainProgram = "example"; 18 }; 19}