Change `unnix` `sed` replacement text.

This commit is contained in:
Whovian NTSN 2024-06-13 23:31:30 -04:00
parent 3948c40840
commit d19ad35bfb
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ let
unnix_script = pkgs.writeShellApplication { unnix_script = pkgs.writeShellApplication {
name = "unnix"; name = "unnix";
/* runtimeInputs = [ sed ]; */ /* runtimeInputs = [ sed ]; */
text = '' sed -r 's@/nix/store/[0-9a-z]{32}-@/<<NIX>>/@g' ''; text = '' sed -r 's@/nix/store/[0-9a-z]{32}-@/<nix store path>/@g' '';
# Quick command to remove Nix Store paths from output. Original source: # Quick command to remove Nix Store paths from output. Original source:
# https://trofi.github.io/posts/247-NixOS-22.05-release.html # https://trofi.github.io/posts/247-NixOS-22.05-release.html
}; };