Merge pull request #213391 from SebTM/update/ddccontrol-db_20230124

ddccontrol-db: 20220903 -> 20230124
This commit is contained in:
Nick Cao 2023-02-02 10:22:14 +08:00 committed by GitHub
commit 54028ecc5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,31 +1,21 @@
{ lib, stdenv
, autoconf
, automake
, libtool
, autoreconfHook
, intltool
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "ddccontrol-db";
version = "20220903";
version = "20230124";
src = fetchFromGitHub {
owner = "ddccontrol";
repo = "ddccontrol-db";
repo = pname;
rev = version;
sha256 = "sha256-OmroJ2AEQdELE2Wuk1qPXzp+/9RUUULrEAdEpmXrJxw=";
sha256 = "sha256-coKdlV2DCZ0S3hg9bQEfE9/FaUbFX5w6IMj/kAqERic=";
};
preConfigure = ''
./autogen.sh
'';
nativeBuildInputs = [ autoconf automake intltool ];
buildInputs =
[
libtool
];
nativeBuildInputs = [ autoreconfHook intltool ];
meta = with lib; {
description = "Monitor database for DDCcontrol";