Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
389 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{ buildNpmPackage }:
{
version,
src,
meta,
}:
buildNpmPackage {
pname = "coolercontrol-ui";
inherit version src;
sourceRoot = "${src.name}/coolercontrol-ui";
npmDepsHash = "sha256-FFVCE3/E+eiTvTeU53cc1Mdbrl5J3+YgYUYltpnGXz0=";
postBuild = ''
cp -r dist $out
'';
dontInstall = true;
meta = meta // {
description = "${meta.description} (UI data)";
};
}