mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ lib, stdenv, python3Packages, fetchFromGitHub }:
|
|
|
|
python3Packages.buildPythonApplication {
|
|
pname = "broadlink-cli";
|
|
inherit (python3Packages.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.15.0
|
|
rev = "99add9e6feea6e47be4f3a58783556d7838b759c";
|
|
sha256 = "1q1q62brvfjcb18i0j4ca5cxqzjwv1iywdrdby0yjqa4wm6ywq6b";
|
|
};
|
|
|
|
format = "other";
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
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 lib; {
|
|
description = "Tools for interfacing with Broadlink RM2/3 (Pro) remote controls, A1 sensor platforms and SP2/3 smartplugs";
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
inherit (python3Packages.broadlink.meta) homepage license;
|
|
};
|
|
}
|