Merge pull request #18091 from Balletie/fix/twmnd-install-hooks

twmn: fix by running pre- and post-install hooks

authored by Joachim F and committed by GitHub bcd5c05b 5ad61449

+4
+4
pkgs/applications/misc/twmn/default.nix
··· 16 ''; 17 18 installPhase = '' 19 mkdir -p "$out/bin" 20 cp bin/* "$out/bin" 21 ''; 22 23 meta = {
··· 16 ''; 17 18 installPhase = '' 19 + runHook preInstall 20 + 21 mkdir -p "$out/bin" 22 cp bin/* "$out/bin" 23 + 24 + runHook postInstall 25 ''; 26 27 meta = {