94 lines
1.7 KiB
Nix
94 lines
1.7 KiB
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchFromGitHub
|
||
|
, buildPythonApplication
|
||
|
, appstream-glib
|
||
|
, dbus-python
|
||
|
, desktop-file-utils
|
||
|
, gettext
|
||
|
, glib
|
||
|
, gobject-introspection
|
||
|
, gtk3
|
||
|
, hicolor-icon-theme
|
||
|
, libappindicator
|
||
|
, libhandy
|
||
|
, meson
|
||
|
, ninja
|
||
|
, pkg-config
|
||
|
, pygobject3
|
||
|
, pyxdg
|
||
|
, systemd
|
||
|
, wrapGAppsHook
|
||
|
}:
|
||
|
|
||
|
buildPythonApplication rec {
|
||
|
pname = "cpupower-gui";
|
||
|
version = "1.0.0";
|
||
|
|
||
|
# This packages doesn't have a setup.py
|
||
|
format = "other";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "vagnum08";
|
||
|
repo = pname;
|
||
|
rev = "v${version}";
|
||
|
sha256 = "05lvpi3wgyi741sd8lgcslj8i7yi3wz7jwl7ca3y539y50hwrdas";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
appstream-glib
|
||
|
desktop-file-utils # needed for update-desktop-database
|
||
|
gettext
|
||
|
glib # needed for glib-compile-schemas
|
||
|
gobject-introspection # need for gtk namespace to be available
|
||
|
hicolor-icon-theme # needed for postinstall script
|
||
|
meson
|
||
|
ninja
|
||
|
pkg-config
|
||
|
wrapGAppsHook
|
||
|
|
||
|
# Python packages
|
||
|
dbus-python
|
||
|
libappindicator
|
||
|
pygobject3
|
||
|
pyxdg
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
glib
|
||
|
gtk3
|
||
|
libhandy
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
dbus-python
|
||
|
libappindicator
|
||
|
pygobject3
|
||
|
pyxdg
|
||
|
];
|
||
|
|
||
|
mesonFlags = [
|
||
|
"-Dsystemddir=${placeholder "out"}/lib/systemd"
|
||
|
];
|
||
|
|
||
|
preConfigure = ''
|
||
|
patchShebangs build-aux/meson/postinstall.py
|
||
|
'';
|
||
|
|
||
|
strictDeps = false;
|
||
|
dontWrapGApps = true;
|
||
|
|
||
|
makeWrapperArgs = [ "\${gappsWrapperArgs[@]}" ];
|
||
|
|
||
|
postFixup = ''
|
||
|
wrapPythonProgramsIn $out/lib "$out $propagatedBuildInputs"
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Change the frequency limits of your cpu and its governor";
|
||
|
homepage = "https://github.com/vagnum08/cpupower-gui/";
|
||
|
license = licenses.gpl3Plus;
|
||
|
maintainers = with maintainers; [ unode ];
|
||
|
};
|
||
|
}
|