29 lines
756 B
Nix
29 lines
756 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
|
, glib, i2c-tools, udev, libgudev, libusb, libdrm, xorg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ddcutil-${version}";
|
|
version = "0.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rockowitz";
|
|
repo = "ddcutil";
|
|
rev = "v${version}";
|
|
sha256 = "1hcdg54xyb1pfl03iqll14y9yglwmyvxyvhbql87hd9q0dywah6m";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [
|
|
i2c-tools udev libgudev
|
|
glib libusb libdrm xorg.libXrandr
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.ddcutil.com/;
|
|
description = "Query and change Linux monitor settings using DDC/CI and USB";
|
|
license = licenses.gpl2;
|
|
maintainer = with maintainers; [ rnhmjoj ];
|
|
};
|
|
}
|
|
|