lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

libhdhomerun: unbreak on aarch64-darwin

+7 -5
+7 -5
pkgs/development/libraries/libhdhomerun/default.nix
··· 13 13 sha256 = "sha256-HlT/78LUiTkRUB2jHmYrnQY+bBiv4stcZlMyUnelSpc="; 14 14 }; 15 15 16 - patchPhase = lib.optionalString stdenv.isDarwin '' 17 - substituteInPlace Makefile --replace "gcc" "cc" 18 - substituteInPlace Makefile --replace "-arch i386" "" 16 + postPatch = lib.optionalString stdenv.isDarwin '' 17 + substituteInPlace Makefile \ 18 + --replace "-arch x86_64" "-arch ${stdenv.hostPlatform.darwinArch}" 19 19 ''; 20 + 21 + makeFlags = [ 22 + "CC=${stdenv.cc.targetPrefix}cc" 23 + ]; 20 24 21 25 installPhase = '' 22 26 mkdir -p $out/{bin,lib,include/hdhomerun} ··· 31 35 license = licenses.lgpl21Only; 32 36 platforms = platforms.unix; 33 37 maintainers = [ maintainers.titanous ]; 34 - # never built on aarch64-darwin since first introduction in nixpkgs 35 - broken = stdenv.isDarwin && stdenv.isAarch64; 36 38 }; 37 39 }