firmwareLinuxNonfree: fix fetching from git (#116306)

Since https://github.com/NixOS/nixpkgs/pull/104714 using a tag as
the `rev` parameter to `fetchgit` is no longer reliable, so spell
out the rev.

Fixes #114439

authored by Arnout Engelen and committed by GitHub 5bf3230f 3329093c

+1 -1
+1 -1
pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix
··· 6 7 src = fetchgit { 8 url = "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git"; 9 - rev = lib.replaceStrings ["-"] [""] version; 10 sha256 = "0c85cd659312isfz1r87qswsgfhy0rljagcwspnvjljqrh9bsgzq"; 11 }; 12
··· 6 7 src = fetchgit { 8 url = "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git"; 9 + rev = "refs/tags/" + lib.replaceStrings ["-"] [""] version; 10 sha256 = "0c85cd659312isfz1r87qswsgfhy0rljagcwspnvjljqrh9bsgzq"; 11 }; 12