2016-08-24 23:06:43 +02:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, intltool, perl, perlPackages, libxml2
|
2016-09-11 23:24:51 +02:00
|
|
|
, pciutils, pkgconfig, gtk2, ddccontrol-db
|
2015-02-20 14:26:29 +01:00
|
|
|
}:
|
|
|
|
|
2015-02-19 22:49:31 +01:00
|
|
|
let version = "0.4.2"; in
|
|
|
|
stdenv.mkDerivation {
|
2015-03-16 21:27:37 +01:00
|
|
|
name = "ddccontrol-${version}";
|
2016-02-09 02:32:47 +01:00
|
|
|
|
2015-02-20 14:26:29 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/ddccontrol/ddccontrol-${version}.tar.bz2";
|
|
|
|
sha1 = "fd5c53286315a61a18697a950e63ed0c8d5acff1";
|
|
|
|
};
|
2016-02-09 02:32:47 +01:00
|
|
|
|
2016-08-24 23:06:43 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook intltool pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [
|
2016-09-11 23:24:51 +02:00
|
|
|
perl perlPackages.libxml_perl libxml2 pciutils gtk2 ddccontrol-db
|
2016-08-24 23:06:43 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
patches = [ ./automake.patch ];
|
2015-03-16 21:27:37 +01:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-09 02:32:47 +01:00
|
|
|
|
2015-02-20 14:26:29 +01:00
|
|
|
prePatch = ''
|
|
|
|
newPath=$(echo "${ddccontrol-db}/share/ddccontrol-db" | sed "s/\\//\\\\\\//g")
|
2015-02-19 22:49:31 +01:00
|
|
|
mv configure.ac configure.ac.old
|
2015-02-20 14:26:29 +01:00
|
|
|
oldPath="\$"
|
|
|
|
oldPath+="{datadir}\/ddccontrol-db"
|
|
|
|
sed "s/$oldPath/$newPath/" <configure.ac.old >configure.ac
|
2015-03-16 21:27:37 +01:00
|
|
|
rm configure.ac.old
|
2015-02-20 14:26:29 +01:00
|
|
|
'';
|
2015-03-16 21:27:37 +01:00
|
|
|
|
2015-02-20 14:26:29 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A program used to control monitor parameters by software";
|
2015-03-16 21:27:37 +01:00
|
|
|
homepage = "http://ddccontrol.sourceforge.net/";
|
2015-02-20 14:26:29 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2015-02-20 14:53:16 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.pakhfn ];
|
2015-02-20 14:26:29 +01:00
|
|
|
};
|
2015-02-19 22:49:31 +01:00
|
|
|
}
|
2015-03-16 21:27:37 +01:00
|
|
|
|