ddcutil: 1.3.0 -> 1.3.2

This commit is contained in:
rnhmjoj 2022-10-19 12:59:52 +02:00
parent cff2660d09
commit 6aa99d482b
No known key found for this signature in database
GPG Key ID: BFBAF4C975F76450

View File

@ -1,6 +1,6 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchurl
, autoreconfHook
, pkg-config
, glib
@ -15,13 +15,11 @@
stdenv.mkDerivation rec {
pname = "ddcutil";
version = "1.3.0";
version = "1.3.2";
src = fetchFromGitHub {
owner = "rockowitz";
repo = "ddcutil";
rev = "v${version}";
sha256 = "sha256-Di/feEQOHNhU3y/HwXQoOnu+gPQYP2Oedf1CPt8gHJ0=";
src = fetchurl {
url = "http://www.ddcutil.com/tarballs/${pname}-${version}.tar.gz";
sha256 = "sha256-vZI7OquGjZ0koArdOWKkfFtfRzCvtXm8lGFCUklloEI=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];