Merge pull request #242018 from steveej-forks/feat_logseq_wrapped_derivation

logesq: pass a function to mkDerivation for easier overrides

authored by adisbladis and committed by GitHub 7e9437ce 54303b65

+5 -2
+5 -2
pkgs/applications/misc/logseq/default.nix
··· 8 8 , nix-update-script 9 9 }: 10 10 11 - stdenv.mkDerivation rec { 11 + stdenv.mkDerivation (finalAttrs: let 12 + inherit (finalAttrs) pname version src appimageContents; 13 + 14 + in { 12 15 pname = "logseq"; 13 16 version = "0.9.10"; 14 17 ··· 69 72 maintainers = with maintainers; [ ]; 70 73 platforms = [ "x86_64-linux" ]; 71 74 }; 72 - } 75 + })