3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/ddcutil/default.nix

30 lines
784 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 17:56:35 +01:00
stdenv.mkDerivation rec {
pname = "ddcutil";
2021-02-09 08:29:45 +00:00
version = "1.0.1";
2017-06-14 17:56:35 +01:00
src = fetchFromGitHub {
owner = "rockowitz";
repo = "ddcutil";
rev = "v${version}";
2021-02-09 08:29:45 +00:00
sha256 = "sha256-F/tKW81bAyYtwpxhl5XC8YyMB+6S0XmqqigwJY2WFDU=";
2017-06-14 17:56:35 +01:00
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
2017-06-14 17:56:35 +01:00
buildInputs = [
i2c-tools udev libgudev
glib libusb1 libdrm xorg.libXrandr
2017-06-14 17:56:35 +01:00
];
meta = with lib; {
homepage = "http://www.ddcutil.com/";
2017-06-14 17:56:35 +01:00
description = "Query and change Linux monitor settings using DDC/CI and USB";
license = licenses.gpl2;
2018-09-03 20:37:01 +01:00
platforms = platforms.linux;
maintainers = with maintainers; [ rnhmjoj ];
2017-06-14 17:56:35 +01:00
};
}