nixpkgs/pkgs/tools/misc/ddcutil/default.nix
Ryan Mulligan 426816e0db ddcutil: 0.8.5 -> 0.8.6
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/kvyrlv9mdf4wxiw0nyygh1gz398lzbny-ddcutil-0.8.6/bin/ddcutil -h` got 0 exit code
- ran `/nix/store/kvyrlv9mdf4wxiw0nyygh1gz398lzbny-ddcutil-0.8.6/bin/ddcutil --help` got 0 exit code
- ran `/nix/store/kvyrlv9mdf4wxiw0nyygh1gz398lzbny-ddcutil-0.8.6/bin/ddcutil -V` and found version 0.8.6
- ran `/nix/store/kvyrlv9mdf4wxiw0nyygh1gz398lzbny-ddcutil-0.8.6/bin/ddcutil --version` and found version 0.8.6
- found 0.8.6 with grep in /nix/store/kvyrlv9mdf4wxiw0nyygh1gz398lzbny-ddcutil-0.8.6
- found 0.8.6 in filename of file in /nix/store/kvyrlv9mdf4wxiw0nyygh1gz398lzbny-ddcutil-0.8.6
2018-02-25 19:59:31 -08:00

29 lines
756 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
, glib, i2c-tools, udev, libgudev, libusb, libdrm, xorg }:
stdenv.mkDerivation rec {
name = "ddcutil-${version}";
version = "0.8.6";
src = fetchFromGitHub {
owner = "rockowitz";
repo = "ddcutil";
rev = "v${version}";
sha256 = "1c4cl9cac90xf9rap6ss2d4yshcmhdq8pdfjz3g4cns789fs1vcf";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [
i2c-tools udev libgudev
glib libusb libdrm xorg.libXrandr
];
meta = with stdenv.lib; {
homepage = http://www.ddcutil.com/;
description = "Query and change Linux monitor settings using DDC/CI and USB";
license = licenses.gpl2;
maintainers = with maintainers; [ rnhmjoj ];
};
}