Commit 6c8644fc authored by sternenseemann's avatar sternenseemann
Browse files

ath9k-htc-blobless-firmware: fix evaluation with Nix 2.3

Path interpolation is not available in all Nix versions nixpkgs supports
parent c269e695
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 {