2017-04-06 11:03:31 +01:00
|
|
|
{ stdenv
|
2016-11-26 20:27:44 +00:00
|
|
|
, python3Packages
|
2017-04-06 11:03:31 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, systemd }:
|
2013-09-24 23:10:59 +01:00
|
|
|
|
|
|
|
let
|
2016-11-26 20:27:44 +00:00
|
|
|
python = python3Packages.python;
|
|
|
|
wrapPython = python3Packages.wrapPython;
|
2017-06-07 11:23:36 +01:00
|
|
|
version = "1.1";
|
2013-09-24 23:10:59 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2017-06-07 11:23:36 +01:00
|
|
|
name = "autorandr-${version}";
|
2013-09-24 23:10:59 +01:00
|
|
|
|
2016-11-26 20:27:44 +00:00
|
|
|
buildInputs = [ python wrapPython ];
|
2013-09-24 23:10:59 +01:00
|
|
|
|
2016-11-26 20:27:44 +00:00
|
|
|
phases = [ "unpackPhase" "installPhase" ];
|
2013-09-24 23:10:59 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
2017-04-06 11:03:31 +01:00
|
|
|
make install TARGETS='autorandr' PREFIX=$out
|
2016-11-26 20:27:44 +00:00
|
|
|
wrapPythonProgramsIn $out/bin/autorandr $out
|
2017-04-06 11:03:31 +01:00
|
|
|
|
|
|
|
make install TARGETS='bash_completion' DESTDIR=$out
|
|
|
|
|
|
|
|
make install TARGETS='autostart_config' PREFIX=$out DESTDIR=$out
|
|
|
|
|
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 \
|
2017-06-07 11:23:36 +01:00
|
|
|
--replace /bin/systemctl "${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
|
|
|
|
''}
|
2013-09-24 23:10:59 +01:00
|
|
|
'';
|
|
|
|
|
2016-11-26 20:27:44 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "phillipberndt";
|
|
|
|
repo = "autorandr";
|
2017-06-07 11:23:36 +01:00
|
|
|
rev = "${version}";
|
|
|
|
sha256 = "05jlzxlrdyd4j90srr71fv91c2hf32diw40n9rmybgcdvy45kygd";
|
2016-11-26 20:27:44 +00:00
|
|
|
};
|
|
|
|
|
2013-09-24 23:10:59 +01:00
|
|
|
meta = {
|
2016-11-26 20:27:44 +00:00
|
|
|
homepage = "http://github.com/phillipberndt/autorandr/";
|
|
|
|
description = "Auto-detect the connect display hardware and load the appropiate X11 setup using xrandr";
|
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2014-04-23 13:26:16 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.coroa ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2013-09-24 23:10:59 +01:00
|
|
|
};
|
|
|
|
}
|