2021-02-10 23:26:20 -08:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, autoreconfHook
|
|
|
|
, intltool
|
|
|
|
, libxml2
|
|
|
|
, pciutils
|
|
|
|
, pkg-config
|
|
|
|
, gtk2
|
|
|
|
, ddccontrol-db
|
2015-02-20 05:26:29 -08:00
|
|
|
}:
|
|
|
|
|
2017-07-29 02:35:49 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 14:52:01 -07:00
|
|
|
pname = "ddccontrol";
|
2021-05-05 19:53:01 -07:00
|
|
|
version = "0.5.2";
|
2016-02-08 17:32:47 -08:00
|
|
|
|
2018-09-18 14:49:11 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ddccontrol";
|
|
|
|
repo = "ddccontrol";
|
2021-05-05 19:53:01 -07:00
|
|
|
rev = "0.5.2";
|
|
|
|
sha256 = "sha256-kul0sjbwbCwadvrccG3KwL/fKWACFUg74QGvgfWE4FQ=";
|
2015-02-20 05:26:29 -08:00
|
|
|
};
|
2016-02-08 17:32:47 -08:00
|
|
|
|
2021-02-10 23:26:20 -08:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
intltool
|
|
|
|
pkg-config
|
|
|
|
];
|
2016-08-24 14:06:43 -07:00
|
|
|
|
|
|
|
buildInputs = [
|
2018-09-18 14:49:11 -07:00
|
|
|
libxml2
|
|
|
|
pciutils
|
|
|
|
gtk2
|
|
|
|
ddccontrol-db
|
2016-08-24 14:06:43 -07:00
|
|
|
];
|
|
|
|
|
2021-07-08 12:29:39 -07:00
|
|
|
configureFlags = [
|
|
|
|
"--with-systemdsystemunitdir=${placeholder "out"}/etc/systemd/system"
|
|
|
|
];
|
|
|
|
|
2015-02-20 05:26:29 -08:00
|
|
|
prePatch = ''
|
2018-09-18 14:49:11 -07:00
|
|
|
oldPath="\$""{datadir}/ddccontrol-db"
|
|
|
|
newPath="${ddccontrol-db}/share/ddccontrol-db"
|
|
|
|
sed -i -e "s|$oldPath|$newPath|" configure.ac
|
|
|
|
sed -i -e "s/chmod 4711/chmod 0711/" src/ddcpci/Makefile*
|
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
intltoolize --force
|
2015-02-20 05:26:29 -08:00
|
|
|
'';
|
2015-03-16 13:27:37 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2015-02-20 05:26:29 -08:00
|
|
|
description = "A program used to control monitor parameters by software";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/ddccontrol/ddccontrol";
|
2021-02-10 23:26:20 -08:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with lib.maintainers; [ pakhfn ];
|
2015-02-20 05:26:29 -08:00
|
|
|
};
|
2015-02-19 13:49:31 -08:00
|
|
|
}
|