can i change some manifest value for a package and have it persist updates? #5848
-
hi! thanks a lot for such wonderful offering. i want to ask if i case in hand, i want to change/remove the $ # XARGS: -o: --open-tty, -i: -I {}: --replace={}
$ # The '> ' prompt is manually added here - just to help the parser.
$ # Idk if it's possible to specify this in xargs
$ xargs -oi scoop cat {} | jq '{extract_dir, persist, env_add_path, env_set}'
> vscodium
{
"extract_dir": null,
"persist": "data",
"env_add_path": "bin",
"env_set": null
}
> vscode
{
"extract_dir": null,
"persist": "data",
"env_add_path": "bin",
"env_set": null
}
blabbering - please ignorereason being: A portion of it originally posted by @me in #5843 (comment) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
One of the advantages of scoop is that you can create your own manifest and store it in your own bucket. Just do it. |
Beta Was this translation helpful? Give feedback.
-
yeah, if scoop allowed overriding one package to create another package (like nixpkgs allows) then it would have been a different matter. as that way, i wont have to keep track of other changes / fixes in the base of package. here: package means the metadata consumable by the package manager i.e. scoop ; always feel that scoop in MANY sense seems to be inspired by nixpkgs. and this could be yet another thing it should take inspiration from nixpkgs lol. but this is not one way, as been using nixos for almost 10-11 months, i can clearly see the places where nixpkgs stould take inspiration from scoop. |
Beta Was this translation helpful? Give feedback.
yeah, if scoop allowed overriding one package to create another package (like nixpkgs allows) then it would have been a different matter.
as that way, i wont have to keep track of other changes / fixes in the base of package.
here: package means the metadata consumable by the package manager i.e. scoop
; always feel that scoop in MANY sense seems to be inspired by nixpkgs. and this could be yet another thing it should take inspiration from nixpkgs lol.
but this is not one way, as been using nixos for almost 10-11 months, i can clearly see …