mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
49 lines
950 B
Nix
49 lines
950 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, glib
|
|
, jansson
|
|
, udev
|
|
, libgudev
|
|
, libusb1
|
|
, libdrm
|
|
, xorg
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ddcutil";
|
|
version = "2.1.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.ddcutil.com/tarballs/ddcutil-${version}.tar.gz";
|
|
hash = "sha256-4U/igqtgw2rwyuhEkV1pWYPIyNZEt2N6hlXJ9bDUyRw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
buildInputs = [
|
|
glib
|
|
jansson
|
|
libdrm
|
|
libgudev
|
|
libusb1
|
|
udev
|
|
xorg.libXext
|
|
xorg.libXrandr
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.ddcutil.com/";
|
|
description = "Query and change Linux monitor settings using DDC/CI and USB";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
changelog = "https://github.com/rockowitz/ddcutil/blob/v${version}/CHANGELOG.md";
|
|
mainProgram = "ddcutil";
|
|
};
|
|
}
|
|
|