lol

piped: init at 0-unstable-2024-11-04 (#354259)

authored by

Thiago Kenji Okada and committed by
GitHub
4343b4f0 4a58b6f6

+43
+43
pkgs/by-name/pi/piped/package.nix
··· 1 + { 2 + lib, 3 + buildNpmPackage, 4 + pnpm, 5 + fetchFromGitHub, 6 + unstableGitUpdater, 7 + }: 8 + 9 + buildNpmPackage rec { 10 + pname = "piped"; 11 + version = "0-unstable-2024-11-04"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "TeamPiped"; 15 + repo = "piped"; 16 + rev = "7866c06801baef16ce94d6f4dd0f8c1b8bc88153"; 17 + hash = "sha256-o3TwE0s5rim+0VKR+oW9Rv3/eQRf2dgRQK4xjZ9pqCE="; 18 + }; 19 + 20 + npmConfigHook = pnpm.configHook; 21 + 22 + installPhase = '' 23 + runHook preInstall 24 + cp dist $out -r 25 + runHook postInstall 26 + ''; 27 + 28 + npmDeps = pnpmDeps; 29 + pnpmDeps = pnpm.fetchDeps { 30 + inherit pname version src; 31 + hash = "sha256-WtZfRZFRV9I1iBlAoV69GGFjdiQhTSBG/iiEadPVcys="; 32 + }; 33 + 34 + passthru.updateScript = unstableGitUpdater { }; 35 + 36 + meta = { 37 + homepage = "https://github.com/TeamPiped/Piped"; 38 + description = "Efficient and privacy-friendly YouTube frontend"; 39 + maintainers = [ lib.maintainers.lucasew ]; 40 + license = [ lib.licenses.agpl3Plus ]; 41 + }; 42 + 43 + }