mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-26 05:51:54 -05:00
Aly Raffauf
08b089b6e2
Some checks failed
nix-build / default-build (push) Has been cancelled
nix-build / fallarbor-build (push) Has been cancelled
nix-build / lavaridge-build (push) Has been cancelled
nix-build / mauville-build (push) Has been cancelled
nix-build / pacifidlog-build (push) Has been cancelled
nix-build / petalburg-build (push) Has been cancelled
nix-build / rustboro-build (push) Has been cancelled
nix-build / slateport-build (push) Has been cancelled
nix-check / fmt-check (push) Has been cancelled
nix-check / eval-check (push) Has been cancelled
37 lines
748 B
Nix
37 lines
748 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
python3,
|
|
}:
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "adjustor";
|
|
version = "3.5.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hhd-dev";
|
|
repo = "adjustor";
|
|
rev = "v${version}";
|
|
hash = "sha256-tde9FfP9MVOw1/0c4y8fQxVNmvvqjPG97S4bphOdqws=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
setuptools
|
|
rich
|
|
pyroute2
|
|
fuse
|
|
pygobject3
|
|
dbus-python
|
|
];
|
|
|
|
# This package doesn't have upstream tests.
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/hhd-dev/adjustor/";
|
|
description = "Allows for TDP control of AMD Handhelds under handheld-daemon support";
|
|
platforms = platforms.linux;
|
|
license = licenses.mit;
|
|
};
|
|
}
|