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 { 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.3.0"; version = "1.3.2";
src = fetchFromGitHub { src = fetchurl {
owner = "rockowitz"; url = "http://www.ddcutil.com/tarballs/${pname}-${version}.tar.gz";
repo = "ddcutil"; sha256 = "sha256-vZI7OquGjZ0koArdOWKkfFtfRzCvtXm8lGFCUklloEI=";
rev = "v${version}";
sha256 = "sha256-Di/feEQOHNhU3y/HwXQoOnu+gPQYP2Oedf1CPt8gHJ0=";
}; };
nativeBuildInputs = [ autoreconfHook pkg-config ]; nativeBuildInputs = [ autoreconfHook pkg-config ];