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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
932 B
Nix
Raw Normal View History

2021-10-19 06:02:30 +00:00
{ lib
, stdenv
2023-01-29 16:00:15 +00:00
, fetchFromGitHub
2021-10-19 06:02:30 +00:00
, autoreconfHook
, pkg-config
, glib
, i2c-tools
, udev
, kmod
, libgudev
, libusb1
, libdrm
, xorg
}:
2017-06-14 16:56:35 +00:00
stdenv.mkDerivation rec {
pname = "ddcutil";
2023-01-29 16:00:15 +00:00
version = "1.4.1";
2017-06-14 16:56:35 +00:00
2023-01-29 16:00:15 +00:00
src = fetchFromGitHub {
owner = "rockowitz";
repo = pname;
rev = "v${version}";
sha256 = "sha256-y3mubdInYa4gpxhdw2JcRhnhd12O7jNq/oF3qoP82LU=";
2017-06-14 16:56:35 +00:00
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
2021-10-19 06:02:30 +00:00
2017-06-14 16:56:35 +00:00
buildInputs = [
2021-10-19 06:02:30 +00:00
glib
i2c-tools
kmod
libdrm
libgudev
libusb1
udev
xorg.libXrandr
2017-06-14 16:56:35 +00:00
];
2021-10-19 06:02:30 +00:00
enableParallelBuilding = true;
meta = with lib; {
2021-10-19 06:02:30 +00:00
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";
2021-10-19 06:02:30 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ rnhmjoj ];
changelog = "https://github.com/rockowitz/ddcutil/blob/v${version}/CHANGELOG.md";
2017-06-14 16:56:35 +00:00
};
}