From 6ca946ee9081cd7129afb39d469bfee921496bbf Mon Sep 17 00:00:00 2001 From: James Earl Douglas Date: Sat, 1 May 2021 16:10:45 -0700 Subject: [PATCH] Add recommended `runHook pre/postInstall` --- pkgs/applications/radio/dump1090/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/radio/dump1090/default.nix b/pkgs/applications/radio/dump1090/default.nix index 747751f9417c..927fa32bd55b 100644 --- a/pkgs/applications/radio/dump1090/default.nix +++ b/pkgs/applications/radio/dump1090/default.nix @@ -28,9 +28,13 @@ stdenv.mkDerivation rec { ]; installPhase = '' + runHook preInstall + mkdir -p $out/bin $out/share cp -v dump1090 view1090 $out/bin cp -vr public_html $out/share/dump1090 + + runHook postInstall ''; meta = with lib; {