Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 017f0e8043da
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7691d57cd21a
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Mar 17, 2019

  1. broadlink-cli: init at 0.9

    peterhoeg committed Mar 17, 2019
    Copy the full SHA
    9bc372e View commit details

Commits on Mar 18, 2019

  1. Merge pull request #57777 from peterhoeg/p/broadlink-cli

    broadlink-cli: init at 0.9
    peterhoeg authored Mar 18, 2019
    Copy the full SHA
    7691d57 View commit details
Showing with 39 additions and 0 deletions.
  1. +37 −0 pkgs/tools/misc/broadlink-cli/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
37 changes: 37 additions & 0 deletions pkgs/tools/misc/broadlink-cli/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{ stdenv, python2Packages, fetchFromGitHub }:

python2Packages.buildPythonApplication rec {
pname = "broadlink-cli";
inherit (python2Packages.broadlink) version;

# the tools are available as part of the source distribution from GH but
# not pypi, so we have to fetch them here.
src = fetchFromGitHub {
owner = "mjg59";
repo = "python-broadlink";
# this rev is version 0.9
rev = "766b7b00fb1cec868e3d5fca66f1aada208959ce";
sha256 = "0j0idzxmpwkb1lbgvi9df2hbxafm5hxjc6mgg5481lq7z4z1r4nb";
};

format = "other";

propagatedBuildInputs = with python2Packages; [
broadlink
];

installPhase = ''
runHook preInstall
install -Dm755 -t $out/bin cli/broadlink_{cli,discovery}
install -Dm644 -t $out/share/doc/broadlink cli/README.md
runHook postInstall
'';

meta = with stdenv.lib; {
description = "Tools for interfacing with Broadlink RM2/3 (Pro) remote controls, A1 sensor platforms and SP2/3 smartplugs";
maintainers = with maintainers; [ peterhoeg ];
inherit (python2Packages.broadlink.meta) homepage license;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -237,6 +237,8 @@ in

mod = callPackage ../development/tools/mod { };

broadlink-cli = callPackage ../tools/misc/broadlink-cli {};

mht2htm = callPackage ../tools/misc/mht2htm { };

fetchpatch = callPackage ../build-support/fetchpatch { };