temp
This commit is contained in:
30
packages/homeassistant/ha-bedjet/default.nix
Normal file
30
packages/homeassistant/ha-bedjet/default.nix
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
buildHomeAssistantComponent,
|
||||||
|
python3Packages,
|
||||||
|
fetchFromGitHub,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
buildHomeAssistantComponent rec {
|
||||||
|
owner = "natekspencer";
|
||||||
|
domain = "bedjet";
|
||||||
|
version = "1.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = owner;
|
||||||
|
repo = "ha-bedjet";
|
||||||
|
rev = version;
|
||||||
|
hash = lib.fakeHash;
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3Packages; [
|
||||||
|
beautifulsoup4
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
changelog = "https://github.com/natekspencer/ha-bedjet/releases/tag/${version}";
|
||||||
|
description = "This project provides various entities to allow control of a BedJet device.";
|
||||||
|
homepage = "https://github.com/natekspencer/ha-bedjet";
|
||||||
|
maintainers = [ ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
# $ nix-env -qaP | grep wget
|
# $ nix-env -qaP | grep wget
|
||||||
environment = {
|
environment = {
|
||||||
variables = {
|
variables = {
|
||||||
NH_OS_FLAKE = "~/nix-config";
|
NH_OS_FLAKE = "nix-config";
|
||||||
};
|
};
|
||||||
systemPackages = with pkgs; [
|
systemPackages = with pkgs; [
|
||||||
asitop
|
asitop
|
||||||
|
|||||||
@@ -33,6 +33,7 @@
|
|||||||
"epic-games"
|
"epic-games"
|
||||||
"gstreamer-runtime"
|
"gstreamer-runtime"
|
||||||
"iterm2"
|
"iterm2"
|
||||||
|
"jagex"
|
||||||
"kitty"
|
"kitty"
|
||||||
"minecraft"
|
"minecraft"
|
||||||
"omnissa-horizon-client"
|
"omnissa-horizon-client"
|
||||||
|
|||||||
Reference in New Issue
Block a user