char/topaz-flake
git clone https://git.t4t.associates/char/topaz-flake
d48492f
main
1{ lib , stdenvNoCC , fetchFromGitHub } : 2stdenvNoCC . mkDerivation { 3pname = "watch-party" ; 4version = "0-unstable-2026-09-07" ; 5 6src = fetchFromGitHub { 7owner = "char" ; 8repo = "watch-party" ; 9rev = "f4334133e1420b9c33f43edda1948f580a5f76ef" ; # branch: main 10hash = "sha256-7RAUKSOWpRPtFnFfPBQXU6Rz0T0iq5wZhf69CGNgjWQ=" ; 11}; 12 13dontBuild = true ; 14 15installPhase = '' 16runHook preInstall 17mkdir -p $ out /share/watch-party 18cp -r . $ out /share/watch-party 19runHook postInstall 20'' ; 21 22meta = { 23description = "synchronised media watch parties" ; 24homepage = "https://github.com/char/watch-party" ; 25}; 26}