Merge pull request #35314 from gnidorah/autorandr

autorandr: embed path to xrandr
This commit is contained in:
adisbladis 2018-02-22 15:54:43 +08:00 committed by GitHub
commit 8f80b63696
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,19 +2,23 @@
, python3Packages
, fetchFromGitHub
, systemd
, xrandr
, makeWrapper }:
, xrandr }:
let
python = python3Packages.python;
wrapPython = python3Packages.wrapPython;
version = "1.4";
in
stdenv.mkDerivation {
name = "autorandr-${version}";
buildInputs = [ python ];
nativeBuildInputs = [ makeWrapper ];
# 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 = ''
runHook preInstall
@ -40,11 +44,6 @@ in
runHook postInstall
'';
postFixup = ''
wrapProgram $out/bin/autorandr \
--prefix PATH : ${xrandr}/bin
'';
src = fetchFromGitHub {
owner = "phillipberndt";
repo = "autorandr";