b5f92a349c
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
27 lines
608 B
Nix
27 lines
608 B
Nix
{ lib, stdenv
|
|
, autoreconfHook
|
|
, intltool
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ddccontrol-db";
|
|
version = "20231004";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ddccontrol";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-C/FqLczkQ9thoAdBI2aDDKgp5ByTWVOJ9bcD9ICqyFM=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|