mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
40 lines
913 B
Nix
40 lines
913 B
Nix
{ lib
|
|
, buildNpmPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "android-tv-card";
|
|
version = "3.7.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Nerwyn";
|
|
repo = "android-tv-card";
|
|
rev = version;
|
|
hash = "sha256-uhdo4K5JqKogQGKr0dkFl579YeAQNbhOwHAFTLpqY6Y=";
|
|
};
|
|
|
|
patches = [ ./dont-call-git.patch ];
|
|
|
|
npmDepsHash = "sha256-wrmj4lewxBnWVlpkb/AP3lfuGNcvYGf+HWBQw7bcr1Q=";
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir $out
|
|
cp dist/android-tv-card.min.js $out
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.entrypoint = "android-tv-card.min.js";
|
|
|
|
meta = with lib; {
|
|
description = "Universal Customizable TV Remote Card, with HA actions, super configurable touchpad, slider, haptics, and keyboard";
|
|
homepage = "https://github.com/Nerwyn/android-tv-card";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ k900 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|