Commit b41a1c5a authored by Ross Smyth's avatar Ross Smyth
Browse files

typst: Inherit meta attributes from package, add maintainer

Main motivation is lib.getExe working without a warning.
parent 6c679116
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -73,6 +73,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
      drupol
      figsoda
      kanashimia
      RossSmyth
    ];
  };
})
+1 −0
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@ lib.makeOverridable (
  { ... }@typstPkgs:
  f:
  buildEnv {
    inherit (typst) meta;
    name = "${typst.name}-env";

    paths = lib.foldl' (acc: p: acc ++ lib.singleton p ++ p.propagatedBuildInputs) [ ] (f typstPkgs);