lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #202957 from figsoda/appimage

appimageTools.wrapType2: passthru src to make nix-update work

authored by

figsoda and committed by
GitHub
4e86ddcd e0220319

+8
+8
pkgs/build-support/appimage/default.nix
··· 61 61 (args // { 62 62 inherit name extraPkgs; 63 63 src = extract { inherit name src; }; 64 + 65 + # passthru src to make nix-update work 66 + # hack to keep the origin position (unsafeGetAttrPos) 67 + passthru = lib.pipe args [ 68 + lib.attrNames 69 + (lib.remove "src") 70 + (removeAttrs args) 71 + ] // args.passthru or { }; 64 72 }); 65 73 66 74 defaultFhsEnvArgs = {