openrgb: move to by-name
This commit is contained in:
+3
-5
@@ -2,13 +2,11 @@
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitLab,
|
||||
qtbase,
|
||||
libsForQt5,
|
||||
openrgb,
|
||||
glib,
|
||||
openal,
|
||||
qmake,
|
||||
pkg-config,
|
||||
wrapQtAppsHook,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
@@ -29,13 +27,13 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
ln -s ${openrgb.src} OpenRGB
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
nativeBuildInputs = with libsForQt5; [
|
||||
qmake
|
||||
pkg-config
|
||||
wrapQtAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
buildInputs = with libsForQt5; [
|
||||
qtbase
|
||||
glib
|
||||
openal
|
||||
+3
-5
@@ -2,14 +2,12 @@
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitLab,
|
||||
qtbase,
|
||||
libsForQt5,
|
||||
openrgb,
|
||||
glib,
|
||||
libgtop,
|
||||
lm_sensors,
|
||||
qmake,
|
||||
pkg-config,
|
||||
wrapQtAppsHook,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
@@ -31,14 +29,14 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
rm -r dependencies/lhwm-cpp-wrapper
|
||||
'';
|
||||
|
||||
buildInputs = [
|
||||
buildInputs = with libsForQt5; [
|
||||
qtbase
|
||||
glib
|
||||
libgtop
|
||||
lm_sensors
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
nativeBuildInputs = with libsForQt5; [
|
||||
qmake
|
||||
pkg-config
|
||||
wrapQtAppsHook
|
||||
@@ -2,15 +2,12 @@
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitLab,
|
||||
qmake,
|
||||
wrapQtAppsHook,
|
||||
libsForQt5,
|
||||
libusb1,
|
||||
hidapi,
|
||||
pkg-config,
|
||||
coreutils,
|
||||
mbedtls_2,
|
||||
qtbase,
|
||||
qttools,
|
||||
symlinkJoin,
|
||||
openrgb,
|
||||
}:
|
||||
@@ -26,12 +23,13 @@ stdenv.mkDerivation rec {
|
||||
hash = "sha256-XBLj4EfupyeVHRc0pVI7hrXFoCNJ7ak2yO0QSfhBsGU=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
nativeBuildInputs = with libsForQt5; [
|
||||
qmake
|
||||
pkg-config
|
||||
wrapQtAppsHook
|
||||
];
|
||||
buildInputs = [
|
||||
|
||||
buildInputs = with libsForQt5; [
|
||||
libusb1
|
||||
hidapi
|
||||
mbedtls_2
|
||||
@@ -4484,17 +4484,11 @@ with pkgs;
|
||||
|
||||
openrefine = callPackage ../applications/science/misc/openrefine { jdk = jdk17; };
|
||||
|
||||
openrgb = libsForQt5.callPackage ../applications/misc/openrgb { };
|
||||
|
||||
openrgb-with-all-plugins = openrgb.withPlugins [
|
||||
openrgb-plugin-effects
|
||||
openrgb-plugin-hardwaresync
|
||||
];
|
||||
|
||||
openrgb-plugin-effects = libsForQt5.callPackage ../applications/misc/openrgb-plugins/effects { };
|
||||
|
||||
openrgb-plugin-hardwaresync = libsForQt5.callPackage ../applications/misc/openrgb-plugins/hardwaresync { };
|
||||
|
||||
toastify = darwin.apple_sdk_11_0.callPackage ../tools/misc/toastify {};
|
||||
|
||||
opensshPackages = dontRecurseIntoAttrs (callPackage ../tools/networking/openssh {});
|
||||
|
||||
Reference in New Issue
Block a user