2021-01-17 04:51:22 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
|
2020-04-04 08:54:45 +02:00
|
|
|
, glib, i2c-tools, udev, libgudev, libusb1, libdrm, xorg }:
|
2017-06-14 18:56:35 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "ddcutil";
|
2020-06-26 09:00:58 +02:00
|
|
|
version = "0.9.9";
|
2017-06-14 18:56:35 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rockowitz";
|
|
|
|
repo = "ddcutil";
|
|
|
|
rev = "v${version}";
|
2020-06-26 09:00:58 +02:00
|
|
|
sha256 = "1ppiddnrvkbb9iir28kl9hzpww0hpgb05jfxzf07xsqkdfb4qv71";
|
2017-06-14 18:56:35 +02:00
|
|
|
};
|
|
|
|
|
2021-01-17 04:51:22 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2017-06-14 18:56:35 +02:00
|
|
|
buildInputs = [
|
|
|
|
i2c-tools udev libgudev
|
2020-04-04 08:54:45 +02:00
|
|
|
glib libusb1 libdrm xorg.libXrandr
|
2017-06-14 18:56:35 +02:00
|
|
|
];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.ddcutil.com/";
|
2017-06-14 18:56:35 +02:00
|
|
|
description = "Query and change Linux monitor settings using DDC/CI and USB";
|
|
|
|
license = licenses.gpl2;
|
2018-09-03 21:37:01 +02:00
|
|
|
platforms = platforms.linux;
|
2017-12-05 23:20:11 +01:00
|
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
2017-06-14 18:56:35 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|