From 7fe947661869d2a7aef4f7c8701d6bef3db299d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Sun, 24 Sep 2023 19:52:00 +0200 Subject: [PATCH] quartus-prime-lite: move passthru towards end Coding style. --- pkgs/applications/editors/quartus-prime/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/quartus-prime/default.nix b/pkgs/applications/editors/quartus-prime/default.nix index d2ffcd088fb8..84a587e9621a 100644 --- a/pkgs/applications/editors/quartus-prime/default.nix +++ b/pkgs/applications/editors/quartus-prime/default.nix @@ -56,8 +56,6 @@ in buildFHSEnv rec { libxcrypt-legacy ]; - passthru = { inherit unwrapped; }; - extraInstallCommands = '' mkdir -p $out/share/applications $out/share/icons/128x128 ln -s ${desktopItem}/share/applications/* $out/share/applications @@ -99,4 +97,6 @@ in buildFHSEnv rec { # Run the wrappers directly, instead of going via bash. runScript = ""; + + passthru = { inherit unwrapped; }; }