summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorRoman Volosatovs <rvolosatovs@riseup.net>2023-11-09 10:01:00 +0000
committerRoman Volosatovs <rvolosatovs@riseup.net>2023-11-09 10:01:36 +0000
commit483e0f0641754cade58253512caab397455db411 (patch)
treed4e9d911c19f4524f3e5d59b9e6b2e1a6ca6d1fd /pkgs/development
parent9e02b14578b44371dc8092b4d05ffc9ccfefcf0b (diff)
downloadnixpkgs-483e0f0641754cade58253512caab397455db411.tar
nixpkgs-483e0f0641754cade58253512caab397455db411.tar.gz
nixpkgs-483e0f0641754cade58253512caab397455db411.tar.bz2
nixpkgs-483e0f0641754cade58253512caab397455db411.tar.lz
nixpkgs-483e0f0641754cade58253512caab397455db411.tar.xz
nixpkgs-483e0f0641754cade58253512caab397455db411.tar.zst
nixpkgs-483e0f0641754cade58253512caab397455db411.zip
fermyon-spin: run install hooks
Signed-off-by: Roman Volosatovs <rvolosatovs@riseup.net>
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/fermyon-spin/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/tools/fermyon-spin/default.nix b/pkgs/development/tools/fermyon-spin/default.nix
index d7c4e27b0e7..a0ba21d6067 100644
--- a/pkgs/development/tools/fermyon-spin/default.nix
+++ b/pkgs/development/tools/fermyon-spin/default.nix
@@ -43,8 +43,12 @@ in stdenv.mkDerivation rec {
   ];
 
   installPhase = ''
+    runHook preInstall
+
     mkdir -p $out/bin
     cp $src/* $out/bin
+
+    runHook postInstall
   '';
 
   meta = with lib; {