2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2023-01-29 16:02:36 +00:00
|
|
|
, autoreconfHook
|
2018-09-19 07:33:07 +00:00
|
|
|
, intltool
|
|
|
|
, fetchFromGitHub
|
2015-03-06 22:10:46 +00:00
|
|
|
}:
|
|
|
|
|
2020-12-15 04:40:11 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ddccontrol-db";
|
2023-05-05 10:21:07 +00:00
|
|
|
version = "20230424";
|
2020-12-15 04:40:11 +00:00
|
|
|
|
2018-09-19 07:33:07 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ddccontrol";
|
2023-01-29 16:02:36 +00:00
|
|
|
repo = pname;
|
2020-12-15 04:40:11 +00:00
|
|
|
rev = version;
|
2023-05-05 10:21:07 +00:00
|
|
|
sha256 = "sha256-qi6dDh6Zk1GpHBpQ+aatAmG9lCdesnJRhK3jVjKYKcQ=";
|
2015-03-06 22:10:46 +00:00
|
|
|
};
|
2018-09-19 07:33:07 +00:00
|
|
|
|
2023-01-29 16:02:36 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook intltool ];
|
2015-03-06 22:10:46 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-03-06 22:10:46 +00:00
|
|
|
description = "Monitor database for DDCcontrol";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/ddccontrol/ddccontrol-db";
|
2015-03-06 22:10:46 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2021-01-15 07:29:18 +00:00
|
|
|
maintainers = [ lib.maintainers.pakhfn ];
|
2015-03-06 22:10:46 +00:00
|
|
|
};
|
2015-03-16 20:27:37 +00:00
|
|
|
}
|