nixpkgs/pkgs/applications/misc/corectrl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

93 lines
1.8 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-10-15 01:05:19 +00:00
, fetchFromGitLab
, extra-cmake-modules
, botan2
, karchive
, kauth
, libdrm
2021-05-16 00:57:38 +00:00
, hwdata
, glxinfo
, polkit
2020-10-15 01:05:19 +00:00
, procps
2024-03-18 16:07:12 +00:00
, pugixml
, spdlog
2020-11-24 15:29:28 +00:00
, util-linux
2020-10-15 01:05:19 +00:00
, vulkan-tools
, qtbase
, qtcharts
, qtquickcontrols2
, qtsvg
, qttools
, qtxmlpatterns
, quazip
2020-10-15 01:05:19 +00:00
, wrapQtAppsHook
} :
stdenv.mkDerivation rec{
pname = "corectrl";
2024-03-18 16:07:12 +00:00
version = "1.4.0";
2020-10-15 01:05:19 +00:00
src = fetchFromGitLab {
owner = "corectrl";
repo = "corectrl";
rev = "v${version}";
2024-03-18 16:07:12 +00:00
sha256 = "sha256-zTH7iSPN7VIhXvWFndOulvGnfUZ+uGWnW53WcnSW+e4=";
2020-10-15 01:05:19 +00:00
};
patches = [
./polkit-dir.patch
];
2020-10-15 01:05:19 +00:00
nativeBuildInputs = [
extra-cmake-modules
wrapQtAppsHook
];
buildInputs = [
botan2
karchive
kauth
libdrm
glxinfo
polkit
2020-10-15 01:05:19 +00:00
procps
2024-03-18 16:07:12 +00:00
pugixml
spdlog
2020-11-24 15:29:28 +00:00
util-linux
2020-10-15 01:05:19 +00:00
vulkan-tools
qtbase
qtcharts
qtquickcontrols2
qtsvg
qttools
qtxmlpatterns
quazip
2020-10-15 01:05:19 +00:00
];
cmakeFlags = [
"-DWITH_PCI_IDS_PATH=${hwdata}/share/hwdata/pci.ids"
"-DINSTALL_DBUS_FILES_IN_PREFIX=true"
"-DPOLKIT_POLICY_INSTALL_DIR=${placeholder "out"}/share/polkit-1/actions"
];
2021-05-16 00:57:38 +00:00
runtimeDeps = [ hwdata glxinfo vulkan-tools util-linux procps ];
2021-01-15 05:42:41 +00:00
binPath = lib.makeBinPath runtimeDeps;
2020-10-15 01:05:19 +00:00
dontWrapQtApps = true;
postInstall = ''
wrapQtApp $out/bin/corectrl --prefix PATH ":" ${binPath}
'';
meta = with lib; {
2020-10-15 01:05:19 +00:00
homepage = "https://gitlab.com/corectrl/corectrl/";
description = "Control your computer hardware via application profiles";
longDescription = ''
CoreCtrl is a Free and Open Source GNU/Linux application that allows you
to control with ease your computer hardware using application profiles. It
aims to be flexible, comfortable and accessible to regular users.
'';
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}
# TODO: report upstream that libdrm is not detected at configure time