Skip to content

Commit

Permalink
pkgs(overrides/fetchurl-gz): fix! :3
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtnvgr committed Feb 14, 2024
1 parent fc595ea commit e5d59cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ in rec {

fetchurl-gz = args: pkgs.fetchurl ({
postFetch = ''
[ $downloadedFile =~ \.zst$ ] && ${pkgs.zstd} -d $downloadedFile
[[ $downloadedFile =~ \.zst$ ]] && ${pkgs.zstd} -d $downloadedFile
'';
} // args);

Expand Down

0 comments on commit e5d59cb

Please sign in to comment.