nixpkgs/pkgs/tools/misc/ddcutil/default.nix

35 lines
909 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
, glib, i2c-tools, udev, libgudev, libusb1, libdrm, xorg }:
2017-06-14 16:56:35 +00:00
stdenv.mkDerivation rec {
pname = "ddcutil";
2021-04-24 09:20:05 +00:00
version = "1.1.0";
2017-06-14 16:56:35 +00:00
src = fetchFromGitHub {
owner = "rockowitz";
repo = "ddcutil";
rev = "v${version}";
2021-04-24 09:20:05 +00:00
sha256 = "0wv8a8zjahzmi4qx0lc24mwyi3jklj1yxqq26fwklmfh5dv1y8yc";
2017-06-14 16:56:35 +00:00
};
patches = [
# Look for kernel modules in /run/booted-system/kernel-modules/lib/modules/*
./nixos-paths.diff
];
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
2017-06-14 16:56:35 +00:00
buildInputs = [
i2c-tools udev libgudev
glib libusb1 libdrm xorg.libXrandr
2017-06-14 16:56:35 +00:00
];
meta = with lib; {
homepage = "http://www.ddcutil.com/";
2017-06-14 16:56:35 +00:00
description = "Query and change Linux monitor settings using DDC/CI and USB";
license = licenses.gpl2;
2018-09-03 19:37:01 +00:00
platforms = platforms.linux;
maintainers = with maintainers; [ rnhmjoj ];
2017-06-14 16:56:35 +00:00
};
}