mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 16:33:55 -05:00
Aly Raffauf
97db653259
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / adjustor-build (push) Waiting to run
nix-build / clean-install-build (push) Waiting to run
nix-build / hd-ui-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / pacifidlog-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
* overlays: init with tablet overlays * flake: add overlays.tablet * overlays.tablet: document * pacifidlog: migrate to overlays.tablet * pacvifidlog: cleanup * overlays: add rofi-bluetooth * flake: output adjustor and hhd-ui * flake: reorg packages and overlays * flake.devShells.default: add nix-update * github: add adjustor and hhd-ui to ci * githuib: test builds * github: undo test change * pkgs: update descriptions * pkgs: reformat
37 lines
729 B
Nix
37 lines
729 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
python3,
|
|
}:
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "adjustor";
|
|
version = "3.5.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
hash = "sha256-9ONWKI68Llh36giIS6nVKNrZYmNAGMfwW2vgPMFuwXM=";
|
|
owner = "hhd-dev";
|
|
repo = "adjustor";
|
|
rev = "v${version}";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
dbus-python
|
|
fuse
|
|
pygobject3
|
|
pyroute2
|
|
rich
|
|
setuptools
|
|
];
|
|
|
|
# This package doesn't have upstream tests.
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "TDP control of AMD Handhelds with handheld-daemon.";
|
|
homepage = "https://github.com/hhd-dev/adjustor/";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|