about summary refs log tree commit diff
path: root/pkgs/applications/misc/notable
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2024-09-25 23:01:28 +0300
committerArtturin <Artturin@artturin.com>2024-09-25 23:01:28 +0300
commit4cb379f4d78080cd004a6056f6ce5ccac9db7eaa (patch)
tree615274e205cac456cad8eb5cb83a93861933da78 /pkgs/applications/misc/notable
parentf7ef27a9822bf11daec0673a4330732fdc494b6a (diff)
treewide: use `nativeBuildInputs` in appimage builder derivations
Diffstat (limited to 'pkgs/applications/misc/notable')
-rw-r--r--pkgs/applications/misc/notable/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/misc/notable/default.nix b/pkgs/applications/misc/notable/default.nix
index cccb55f5e5f72..9d1c4a246627c 100644
--- a/pkgs/applications/misc/notable/default.nix
+++ b/pkgs/applications/misc/notable/default.nix
@@ -22,6 +22,8 @@ appimageTools.wrapType2 rec {
     export LC_ALL=C.UTF-8
   '';
 
+  nativeBuildInputs = [ makeWrapper ];
+
   extraPkgs = pkgs: [ pkgs.at-spi2-atk pkgs.at-spi2-core ];
 
   extraInstallCommands = ''
@@ -30,7 +32,6 @@ appimageTools.wrapType2 rec {
       $out/share/icons/hicolor/1024x1024/apps/notable.png
     substituteInPlace $out/share/applications/notable.desktop \
       --replace 'Exec=AppRun' 'Exec=${pname}'
-    source "${makeWrapper}/nix-support/setup-hook"
     wrapProgram "$out/bin/${pname}" \
       --add-flags "--disable-seccomp-filter-sandbox"
   '';