2022-06-28 03:26:19 +00:00
|
|
|
{ lib
|
|
|
|
, python3
|
2016-11-26 20:27:44 +00:00
|
|
|
, python3Packages
|
2017-04-06 10:03:31 +00:00
|
|
|
, fetchFromGitHub
|
2017-10-09 22:46:40 +00:00
|
|
|
, systemd
|
2021-12-05 07:07:39 +00:00
|
|
|
, xrandr
|
2023-01-23 15:11:07 +00:00
|
|
|
, installShellFiles
|
|
|
|
, desktop-file-utils }:
|
2013-09-24 22:10:59 +00:00
|
|
|
|
2022-06-28 03:26:19 +00:00
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2021-07-14 15:10:11 +00:00
|
|
|
pname = "autorandr";
|
2023-01-26 21:07:42 +00:00
|
|
|
version = "1.13.3";
|
2022-09-21 09:33:20 +00:00
|
|
|
format = "other";
|
2013-09-24 22:10:59 +00:00
|
|
|
|
2023-01-23 15:11:07 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles desktop-file-utils ];
|
2022-06-28 03:26:19 +00:00
|
|
|
propagatedBuildInputs = [ python3Packages.packaging ];
|
2021-12-05 07:07:39 +00:00
|
|
|
|
2021-07-14 15:10:11 +00:00
|
|
|
buildPhase = ''
|
|
|
|
substituteInPlace autorandr.py \
|
|
|
|
--replace 'os.popen("xrandr' 'os.popen("${xrandr}/bin/xrandr' \
|
|
|
|
--replace '["xrandr"]' '["${xrandr}/bin/xrandr"]'
|
|
|
|
'';
|
|
|
|
|
2022-06-28 03:26:19 +00:00
|
|
|
patches = [ ./0001-don-t-use-sys.executable.patch ];
|
|
|
|
|
2021-07-14 15:10:11 +00:00
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
make install TARGETS='autorandr' PREFIX=$out
|
|
|
|
|
2021-12-05 07:07:39 +00:00
|
|
|
# zsh completions exist but currently have no make target, use
|
|
|
|
# installShellCompletions for both
|
|
|
|
# see https://github.com/phillipberndt/autorandr/issues/197
|
|
|
|
installShellCompletion --cmd autorandr \
|
|
|
|
--bash contrib/bash_completion/autorandr \
|
|
|
|
--zsh contrib/zsh_completion/_autorandr
|
2021-07-14 15:10:11 +00:00
|
|
|
|
|
|
|
make install TARGETS='autostart_config' PREFIX=$out DESTDIR=$out
|
|
|
|
|
|
|
|
make install TARGETS='manpage' PREFIX=$man
|
|
|
|
|
|
|
|
${if systemd != null then ''
|
|
|
|
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 \
|
|
|
|
--replace /bin/systemctl "/run/current-system/systemd/bin/systemctl"
|
|
|
|
'' 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
|
|
|
|
''}
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "phillipberndt";
|
|
|
|
repo = "autorandr";
|
2023-01-19 02:05:32 +00:00
|
|
|
rev = "refs/tags/${version}";
|
2023-01-26 21:07:42 +00:00
|
|
|
sha256 = "sha256-3zWYOOVYpj+s7VKagnbI55MNshM5WtbCFD6q9tRCzes=";
|
2021-07-14 15:10:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/phillipberndt/autorandr/";
|
|
|
|
description = "Automatically select a display configuration based on connected devices";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ coroa globin ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|