4d5a95770c
GitOrigin-RevId: 3c5319ad3aa51551182ac82ea17ab1c6b0f0df89
27 lines
608 B
Nix
27 lines
608 B
Nix
{ lib, stdenv
|
|
, autoreconfHook
|
|
, intltool
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ddccontrol-db";
|
|
version = "20230223";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ddccontrol";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-ehmMSriBYVOeKbXDybpnbYwBEQJcN0NQJ3zaneMxFmQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook intltool ];
|
|
|
|
meta = with lib; {
|
|
description = "Monitor database for DDCcontrol";
|
|
homepage = "https://github.com/ddccontrol/ddccontrol-db";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ lib.maintainers.pakhfn ];
|
|
};
|
|
}
|