hdhomerun-config-gui: fix install bin path

Also make sure to run pre and post install hooks.
This commit is contained in:
Louis Tim Larsen 2021-07-14 22:17:37 +02:00 committed by Robert Helgesson
parent d37df25455
commit 8540876319

View file

@ -16,7 +16,9 @@ stdenv.mkDerivation rec {
makeFlags = [ "SUBDIRS=src" ];
installPhase = ''
install -vDm 755 src/hdhomerun_config_gui $out/usr/bin/hdhomerun_config_gui
runHook preInstall
install -vDm 755 src/hdhomerun_config_gui $out/bin/hdhomerun_config_gui
runHook postInstall
'';
meta = with lib; {