char/topaz-flake

git clone https://git.t4t.associates/char/topaz-flake

Charlotte Sombump watch-party againd48492f

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