nixpkgs/pkgs/tools/misc/ddccontrol/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
1.5 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, autoreconfHook
, intltool
, libxml2
, pciutils
, pkg-config
, gtk2
, ddccontrol-db
2015-02-20 13:26:29 +00:00
}:
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "ddccontrol";
2023-10-16 11:02:22 +00:00
version = "1.0.0";
2016-02-09 01:32:47 +00:00
2018-09-18 21:49:11 +00:00
src = fetchFromGitHub {
owner = "ddccontrol";
repo = "ddccontrol";
2021-10-20 11:26:02 +00:00
rev = version;
2023-10-16 11:02:22 +00:00
sha256 = "sha256-100SITpGbui/gRhFjVZxn6lZRB0najtGHd18oUpByJo=";
2015-02-20 13:26:29 +00:00
};
2016-02-09 01:32:47 +00:00
nativeBuildInputs = [
autoreconfHook
intltool
pkg-config
];
buildInputs = [
2018-09-18 21:49:11 +00:00
libxml2
pciutils
gtk2
ddccontrol-db
];
patches = [
# Upstream commit, fixed the version number in v1.0.0
(fetchpatch {
url = "https://github.com/ddccontrol/ddccontrol/commit/fc8c5b5d0f2b64b08b95f4a7d8f47f2fd8ceec34.patch";
hash = "sha256-SB1BaolTNCUYgj38nMg1uLUqOHvnwCr8T3cnfu/7rjI=";
})
];
2021-07-08 19:29:39 +00:00
configureFlags = [
"--with-systemdsystemunitdir=${placeholder "out"}/etc/systemd/system"
];
2015-02-20 13:26:29 +00:00
prePatch = ''
substituteInPlace configure.ac \
--replace \
"\$""{datadir}/ddccontrol-db" \
"${ddccontrol-db}/share/ddccontrol-db"
substituteInPlace src/ddcpci/Makefile.am \
--replace "chmod 4711" "chmod 0711"
2018-09-18 21:49:11 +00:00
'';
preConfigure = ''
intltoolize --force
2015-02-20 13:26:29 +00:00
'';
meta = with lib; {
2015-02-20 13:26:29 +00:00
description = "A program used to control monitor parameters by software";
homepage = "https://github.com/ddccontrol/ddccontrol";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with lib.maintainers; [ pakhfn ];
2015-02-20 13:26:29 +00:00
};
2015-02-19 21:49:31 +00:00
}