2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2020-10-15 02:05:19 +01:00
|
|
|
, fetchFromGitLab
|
|
|
|
, extra-cmake-modules
|
|
|
|
, botan2
|
|
|
|
, karchive
|
|
|
|
, kauth
|
|
|
|
, libdrm
|
2021-05-16 01:57:38 +01:00
|
|
|
, hwdata
|
2020-10-15 02:05:19 +01:00
|
|
|
, mesa-demos
|
|
|
|
, procps
|
2020-11-24 15:29:28 +00:00
|
|
|
, util-linux
|
2020-10-15 02:05:19 +01:00
|
|
|
, vulkan-tools
|
|
|
|
, qtbase
|
|
|
|
, qtcharts
|
|
|
|
, qtquickcontrols2
|
|
|
|
, qtsvg
|
|
|
|
, qttools
|
|
|
|
, qtxmlpatterns
|
|
|
|
, wrapQtAppsHook
|
|
|
|
} :
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec{
|
|
|
|
pname = "corectrl";
|
2021-07-26 04:31:01 +01:00
|
|
|
version = "1.1.4";
|
2020-10-15 02:05:19 +01:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "corectrl";
|
|
|
|
repo = "corectrl";
|
|
|
|
rev = "v${version}";
|
2021-07-26 04:31:01 +01:00
|
|
|
sha256 = "sha256-o8u9WnkK/6VZ+wlJ9I5Ti6ADjV9VXraRGpSWkDQv5JQ=";
|
2020-10-15 02:05:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
extra-cmake-modules
|
|
|
|
wrapQtAppsHook
|
|
|
|
];
|
|
|
|
buildInputs = [
|
|
|
|
botan2
|
|
|
|
karchive
|
|
|
|
kauth
|
|
|
|
libdrm
|
|
|
|
mesa-demos
|
|
|
|
procps
|
2020-11-24 15:29:28 +00:00
|
|
|
util-linux
|
2020-10-15 02:05:19 +01:00
|
|
|
vulkan-tools
|
|
|
|
qtbase
|
|
|
|
qtcharts
|
|
|
|
qtquickcontrols2
|
|
|
|
qtsvg
|
|
|
|
qttools
|
|
|
|
qtxmlpatterns
|
|
|
|
];
|
|
|
|
|
2021-05-16 01:57:38 +01:00
|
|
|
cmakeFlags = [ "-DWITH_PCI_IDS_PATH=${hwdata}/share/hwdata/pci.ids" ];
|
|
|
|
|
|
|
|
runtimeDeps = [ hwdata mesa-demos vulkan-tools ];
|
2021-01-15 05:42:41 +00:00
|
|
|
binPath = lib.makeBinPath runtimeDeps;
|
2020-10-15 02:05:19 +01:00
|
|
|
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapQtApp $out/bin/corectrl --prefix PATH ":" ${binPath}
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-15 02:05:19 +01: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
|