forked from mirrors/nixpkgs
autorandr: fix python shebang
This commit is contained in:
parent
5c9f0d00c3
commit
451de09f51
|
@ -11,13 +11,11 @@ in
|
|||
stdenv.mkDerivation {
|
||||
name = "autorandr-${version}";
|
||||
|
||||
buildInputs = [ python wrapPython ];
|
||||
|
||||
phases = [ "unpackPhase" "installPhase" ];
|
||||
buildInputs = [ python ];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
make install TARGETS='autorandr' PREFIX=$out
|
||||
wrapPythonProgramsIn $out/bin/autorandr $out
|
||||
|
||||
make install TARGETS='bash_completion' DESTDIR=$out
|
||||
|
||||
|
@ -35,6 +33,7 @@ in
|
|||
make install TARGETS='udev' PREFIX=$out DESTDIR=$out \
|
||||
UDEV_RULES_DIR=/etc/udev/rules.d
|
||||
''}
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
src = fetchFromGitHub {
|
||||
|
|
Loading…
Reference in a new issue