mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-27 07:14:52 +00:00
26 lines
384 B
Nix
26 lines
384 B
Nix
{ buildNpmPackage
|
|
}:
|
|
|
|
{ version
|
|
, src
|
|
, meta
|
|
}:
|
|
|
|
buildNpmPackage {
|
|
pname = "coolercontrol-ui";
|
|
inherit version src;
|
|
sourceRoot = "${src.name}/coolercontrol-ui";
|
|
|
|
npmDepsHash = "sha256-7Hd1LT1ro83QMuoDGvFGsrTlQaSia+lVG8lyaAibiAo=";
|
|
|
|
postBuild = ''
|
|
cp -r dist $out
|
|
'';
|
|
|
|
dontInstall = true;
|
|
|
|
meta = meta // {
|
|
description = "${meta.description} (UI data)";
|
|
};
|
|
}
|