35 lines
909 B
Nix
35 lines
909 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
|
|
, glib, i2c-tools, udev, libgudev, libusb1, libdrm, xorg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ddcutil";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rockowitz";
|
|
repo = "ddcutil";
|
|
rev = "v${version}";
|
|
sha256 = "0wv8a8zjahzmi4qx0lc24mwyi3jklj1yxqq26fwklmfh5dv1y8yc";
|
|
};
|
|
|
|
patches = [
|
|
# Look for kernel modules in /run/booted-system/kernel-modules/lib/modules/*
|
|
./nixos-paths.diff
|
|
];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
buildInputs = [
|
|
i2c-tools udev libgudev
|
|
glib libusb1 libdrm xorg.libXrandr
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.ddcutil.com/";
|
|
description = "Query and change Linux monitor settings using DDC/CI and USB";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
};
|
|
}
|
|
|