62 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv
2016-11-26 21:27:44 +01:00
, python3Packages
, fetchFromGitHub
2017-10-09 23:46:40 +01:00
, systemd
2018-02-22 10:41:30 +03:00
, xrandr }:
let
2016-11-26 21:27:44 +01:00
python = python3Packages.python;
2018-10-02 10:33:37 +02:00
version = "1.7";
in
stdenv.mkDerivation {
2017-06-07 13:23:36 +03:00
name = "autorandr-${version}";
2017-06-08 12:10:44 +01:00
buildInputs = [ python ];
2018-02-22 10:41:30 +03: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"]'
'';
installPhase = ''
2017-06-08 12:10:44 +01:00
runHook preInstall
make install TARGETS='autorandr' PREFIX=$out
make install TARGETS='bash_completion' DESTDIR=$out
make install TARGETS='autostart_config' PREFIX=$out DESTDIR=$out
2017-06-07 13:23:36 +03:00
${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 \
2017-06-07 13:23:36 +03:00
--replace /bin/systemctl "${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
''}
2017-10-09 23:46:40 +01:00
2017-06-08 12:10:44 +01:00
runHook postInstall
'';
2016-11-26 21:27:44 +01:00
src = fetchFromGitHub {
owner = "phillipberndt";
repo = "autorandr";
2017-06-07 13:23:36 +03:00
rev = "${version}";
2018-10-02 10:33:37 +02:00
sha256 = "0wpiimc5xai813h7gywwp20svkn35pkw99bnjflmpwz7x8fn8dfz";
2016-11-26 21:27:44 +01:00
};
meta = {
homepage = https://github.com/phillipberndt/autorandr/;
2016-11-26 21:27:44 +01:00
description = "Auto-detect the connect display hardware and load the appropiate X11 setup using xrandr";
license = stdenv.lib.licenses.gpl3Plus;
maintainers = [ stdenv.lib.maintainers.coroa ];
platforms = stdenv.lib.platforms.unix;
};
}