2017-04-06 03:03:31 -07:00
|
|
|
{ stdenv
|
2016-11-26 12:27:44 -08:00
|
|
|
, python3Packages
|
2017-04-06 03:03:31 -07:00
|
|
|
, fetchFromGitHub
|
2017-10-09 15:46:40 -07:00
|
|
|
, systemd
|
2018-02-21 23:41:30 -08:00
|
|
|
, xrandr }:
|
2013-09-24 15:10:59 -07:00
|
|
|
|
|
|
|
let
|
2016-11-26 12:27:44 -08:00
|
|
|
python = python3Packages.python;
|
2019-12-22 21:48:00 -08:00
|
|
|
version = "1.9";
|
2013-09-24 15:10:59 -07:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2019-08-13 14:52:01 -07:00
|
|
|
pname = "autorandr";
|
|
|
|
inherit version;
|
2013-09-24 15:10:59 -07:00
|
|
|
|
2017-06-08 04:10:44 -07:00
|
|
|
buildInputs = [ python ];
|
2018-02-21 23:41:30 -08:00
|
|
|
|
|
|
|
# no wrapper, as autorandr --batch does os.environ.clear()
|
|
|
|
buildPhase = ''
|
|
|
|
substituteInPlace autorandr.py \
|
|
|
|
--replace 'os.popen("xrandr' 'os.popen("${xrandr}/bin/xrandr' \
|
|
|
|
--replace '["xrandr"]' '["${xrandr}/bin/xrandr"]'
|
|
|
|
'';
|
2013-09-24 15:10:59 -07:00
|
|
|
|
|
|
|
installPhase = ''
|
2017-06-08 04:10:44 -07:00
|
|
|
runHook preInstall
|
2017-04-06 03:03:31 -07:00
|
|
|
make install TARGETS='autorandr' PREFIX=$out
|
|
|
|
|
2019-03-10 10:06:48 -07:00
|
|
|
make install TARGETS='bash_completion' DESTDIR=$out/share/bash-completion/completions
|
2017-04-06 03:03:31 -07:00
|
|
|
|
|
|
|
make install TARGETS='autostart_config' PREFIX=$out DESTDIR=$out
|
|
|
|
|
2017-06-07 03:23:36 -07:00
|
|
|
${if systemd != null then ''
|
2017-04-06 03:03:31 -07:00
|
|
|
make install TARGETS='systemd udev' PREFIX=$out DESTDIR=$out \
|
|
|
|
SYSTEMD_UNIT_DIR=/lib/systemd/system \
|
|
|
|
UDEV_RULES_DIR=/etc/udev/rules.d
|
|
|
|
substituteInPlace $out/etc/udev/rules.d/40-monitor-hotplug.rules \
|
2017-06-07 03:23:36 -07:00
|
|
|
--replace /bin/systemctl "${systemd}/bin/systemctl"
|
2017-04-06 03:03:31 -07:00
|
|
|
'' else ''
|
|
|
|
make install TARGETS='pmutils' DESTDIR=$out \
|
|
|
|
PM_SLEEPHOOKS_DIR=/lib/pm-utils/sleep.d
|
|
|
|
make install TARGETS='udev' PREFIX=$out DESTDIR=$out \
|
|
|
|
UDEV_RULES_DIR=/etc/udev/rules.d
|
|
|
|
''}
|
2017-10-09 15:46:40 -07:00
|
|
|
|
2017-06-08 04:10:44 -07:00
|
|
|
runHook postInstall
|
2013-09-24 15:10:59 -07:00
|
|
|
'';
|
|
|
|
|
2016-11-26 12:27:44 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "phillipberndt";
|
|
|
|
repo = "autorandr";
|
2019-09-08 16:38:31 -07:00
|
|
|
rev = version;
|
2019-12-22 21:48:00 -08:00
|
|
|
sha256 = "1bb0l7fcm5lcx9y02zdxv7pfdqf4v4gsc5br3v1x9gzjvqj64l7n";
|
2016-11-26 12:27:44 -08:00
|
|
|
};
|
|
|
|
|
2019-08-20 10:36:05 -07:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-02 14:50:51 -07:00
|
|
|
homepage = https://github.com/phillipberndt/autorandr/;
|
2019-05-25 18:07:31 -07:00
|
|
|
description = "Automatically select a display configuration based on connected devices";
|
2019-08-20 10:36:05 -07:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ coroa globin ];
|
|
|
|
platforms = platforms.unix;
|
2013-09-24 15:10:59 -07:00
|
|
|
};
|
|
|
|
}
|