ddcutil: 1.4.1 -> 1.4.2

This commit is contained in:
rnhmjoj 2023-08-18 11:26:47 +02:00
parent 28482dfd42
commit 5b8856450e
No known key found for this signature in database
GPG key ID: BFBAF4C975F76450

View file

@ -1,6 +1,6 @@
{ lib { lib
, stdenv , stdenv
, fetchFromGitHub , fetchurl
, autoreconfHook , autoreconfHook
, pkg-config , pkg-config
, glib , glib
@ -15,13 +15,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "ddcutil"; pname = "ddcutil";
version = "1.4.1"; version = "1.4.2";
src = fetchFromGitHub { src = fetchurl {
owner = "rockowitz"; url = "https://www.ddcutil.com/tarballs/ddcutil-${version}.tar.gz";
repo = pname; hash = "sha256-wGwTZheRHi5pGf6WB9hGd8m/pLOmnlYYrS5dd+QItAQ=";
rev = "v${version}";
sha256 = "sha256-y3mubdInYa4gpxhdw2JcRhnhd12O7jNq/oF3qoP82LU=";
}; };
nativeBuildInputs = [ autoreconfHook pkg-config ]; nativeBuildInputs = [ autoreconfHook pkg-config ];