forked from mirrors/nixpkgs
ath9k-htc-blobless-firmware: fix evaluation with Nix 2.3
Path interpolation is not available in all Nix versions nixpkgs supports
This commit is contained in:
parent
c269e695d8
commit
6c8644fc37
|
@ -41,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
let
|
||||
inherit (lib) toUpper splitString last listToAttrs pipe;
|
||||
inherit (builtins) map;
|
||||
urls-and-hashes = import ./urls-and-hashes-${finalAttrs.version}.nix;
|
||||
urls-and-hashes = import (./. + "/urls-and-hashes-${finalAttrs.version}.nix");
|
||||
make-links = pipe
|
||||
[ "gcc" "binutils" "gmp" "mpfr" "mpc" ]
|
||||
[ (map (vname: fetchurl rec {
|
||||
|
|
Loading…
Reference in a new issue