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

78 lines
1.6 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
2020-10-15 01:05:19 +00:00
, mesa-demos
, procps
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
, wrapQtAppsHook
} :
stdenv.mkDerivation rec{
pname = "corectrl";
2021-11-16 16:30:38 +00:00
version = "1.2.2";
2020-10-15 01:05:19 +00:00
src = fetchFromGitLab {
owner = "corectrl";
repo = "corectrl";
rev = "v${version}";
2021-11-16 16:30:38 +00:00
sha256 = "1zp523cgvmfjc42wx1f1jh5q3jnsnm833m2xnbbwmfrmhrzh5269";
2020-10-15 01:05:19 +00: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 01:05:19 +00:00
vulkan-tools
qtbase
qtcharts
qtquickcontrols2
qtsvg
qttools
qtxmlpatterns
];
2021-05-16 00:57:38 +00: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 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