2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2016-11-26 20:27:44 +00:00
|
|
|
, python3Packages
|
2017-04-06 11:03:31 +01:00
|
|
|
, fetchFromGitHub
|
2017-10-09 23:46:40 +01:00
|
|
|
, systemd
|
2018-02-22 07:41:30 +00:00
|
|
|
, xrandr }:
|
2013-09-24 23:10:59 +01:00
|
|
|
|
|
|
|
let
|
2016-11-26 20:27:44 +00:00
|
|
|
python = python3Packages.python;
|
2020-11-22 20:29:30 +00:00
|
|
|
version = "1.11";
|
2013-09-24 23:10:59 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "autorandr";
|
|
|
|
inherit version;
|
2013-09-24 23:10:59 +01:00
|
|
|
|
2017-06-08 12:10:44 +01:00
|
|
|
buildInputs = [ python ];
|
2018-02-22 07:41:30 +00: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 23:10:59 +01:00
|
|
|
|
2020-11-16 08:34:34 +00:00
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
2013-09-24 23:10:59 +01:00
|
|
|
installPhase = ''
|
2017-06-08 12:10:44 +01:00
|
|
|
runHook preInstall
|
2017-04-06 11:03:31 +01:00
|
|
|
make install TARGETS='autorandr' PREFIX=$out
|
|
|
|
|
2019-03-10 17:06:48 +00:00
|
|
|
make install TARGETS='bash_completion' DESTDIR=$out/share/bash-completion/completions
|
2017-04-06 11:03:31 +01:00
|
|
|
|
|
|
|
make install TARGETS='autostart_config' PREFIX=$out DESTDIR=$out
|
|
|
|
|
2020-11-16 08:34:34 +00:00
|
|
|
make install TARGETS='manpage' PREFIX=$man
|
|
|
|
|
2017-06-07 11:23:36 +01:00
|
|
|
${if systemd != null then ''
|
2017-04-06 11:03:31 +01: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 \
|
2020-05-21 09:35:21 +01:00
|
|
|
--replace /bin/systemctl "/run/current-system/systemd/bin/systemctl"
|
2017-04-06 11:03:31 +01: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 23:46:40 +01:00
|
|
|
|
2017-06-08 12:10:44 +01:00
|
|
|
runHook postInstall
|
2013-09-24 23:10:59 +01:00
|
|
|
'';
|
|
|
|
|
2016-11-26 20:27:44 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "phillipberndt";
|
|
|
|
repo = "autorandr";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2020-11-22 20:29:30 +00:00
|
|
|
sha256 = "0rmnqk2bi6bbd2if1rll37mlzlqxzmnazfffdhcpzskxwyaj4yn5";
|
2016-11-26 20:27:44 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/phillipberndt/autorandr/";
|
2019-05-26 02:07:31 +01:00
|
|
|
description = "Automatically select a display configuration based on connected devices";
|
2019-08-20 18:36:05 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ coroa globin ];
|
|
|
|
platforms = platforms.unix;
|
2013-09-24 23:10:59 +01:00
|
|
|
};
|
|
|
|
}
|