mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-09 16:18:34 +01:00
26 lines
389 B
Nix
26 lines
389 B
Nix
{ buildNpmPackage }:
|
|
|
|
{
|
|
version,
|
|
src,
|
|
meta,
|
|
}:
|
|
|
|
buildNpmPackage {
|
|
pname = "coolercontrol-ui";
|
|
inherit version src;
|
|
sourceRoot = "${src.name}/coolercontrol-ui";
|
|
|
|
npmDepsHash = "sha256-pXK2wyRujUqnRZNIf/bDXpYdfEYHeia/E/jwLkfWwfo=";
|
|
|
|
postBuild = ''
|
|
cp -r dist $out
|
|
'';
|
|
|
|
dontInstall = true;
|
|
|
|
meta = meta // {
|
|
description = "${meta.description} (UI data)";
|
|
};
|
|
}
|