about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2024-04-29 20:22:11 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2024-05-11 20:47:25 +0200
commit7dfd0a3b5f1b325e83b57e9226915a8b6c4e30bb (patch)
tree801bafc6ad103e42635ce26aa72e8379107a6147
parent732d18321bd40d3a7e013fe10d9ba4b292828669 (diff)
quartus-prime-lite: add version, meta
Reference version and meta from the unwrapped derivation in the
wrapped/FHS derivation.
-rw-r--r--pkgs/applications/editors/quartus-prime/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/editors/quartus-prime/default.nix b/pkgs/applications/editors/quartus-prime/default.nix
index f0072cf74711d..324042be90a77 100644
--- a/pkgs/applications/editors/quartus-prime/default.nix
+++ b/pkgs/applications/editors/quartus-prime/default.nix
@@ -18,6 +18,7 @@ let
 # I think questa_fse/linux/vlm checksums itself, so use FHSUserEnv instead of `patchelf`
 in buildFHSEnv rec {
   pname = "quartus-prime-lite"; # wrapped
+  inherit (unwrapped) version;
 
   targetPkgs = pkgs: with pkgs; [
     (runCommand "ld-lsb-compat" {} (''
@@ -160,4 +161,6 @@ in buildFHSEnv rec {
       '';
     };
   };
+
+  inherit (unwrapped) meta;
 }