libfreeaptx: avoid rebuilding on Linux for now

Commit 152765ca8b caused thousands of rebuilds;
let's save doing that work on nixpkgs master.
main
Vladimír Čunát 2 years ago
parent 7ee64873f3
commit 39f9c2dcfe
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
  1. 8
      pkgs/development/libraries/libfreeaptx/default.nix

@ -11,11 +11,11 @@ stdenv.mkDerivation rec {
sha256 = "sha256-eEUhOrKqb2hHWanY+knpY9FBEnjkkFTB+x6BZgMBpbo="; sha256 = "sha256-eEUhOrKqb2hHWanY+knpY9FBEnjkkFTB+x6BZgMBpbo=";
}; };
postPatch = lib.optionalString stdenv.isDarwin '' postPatch = if stdenv.isDarwin then ''
substituteInPlace Makefile \ substituteInPlace Makefile \
--replace '-soname' '-install_name' \ --replace '-soname' '-install_name' \
--replace 'lib$(NAME).so' 'lib$(NAME).dylib' --replace 'lib$(NAME).so' 'lib$(NAME).dylib'
''; '' else null;
makeFlags = [ makeFlags = [
"PREFIX=${placeholder "out"}" "PREFIX=${placeholder "out"}"
@ -27,12 +27,12 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
postInstall = lib.optionalString stdenv.isDarwin '' postInstall = if stdenv.isDarwin then ''
install_name_tool -change libfreeaptx.dylib.0 $out/lib/libfreeaptx.dylib.0 $out/bin/freeaptxdec install_name_tool -change libfreeaptx.dylib.0 $out/lib/libfreeaptx.dylib.0 $out/bin/freeaptxdec
install_name_tool -change libfreeaptx.dylib.0 $out/lib/libfreeaptx.dylib.0 $out/bin/freeaptxenc install_name_tool -change libfreeaptx.dylib.0 $out/lib/libfreeaptx.dylib.0 $out/bin/freeaptxenc
install_name_tool -id $out/lib/libfreeaptx.dylib $out/lib/libfreeaptx.dylib install_name_tool -id $out/lib/libfreeaptx.dylib $out/lib/libfreeaptx.dylib
install_name_tool -id $out/lib/libfreeaptx.dylib.0 $out/lib/libfreeaptx.dylib.0 install_name_tool -id $out/lib/libfreeaptx.dylib.0 $out/lib/libfreeaptx.dylib.0
''; '' else null;
meta = with lib; { meta = with lib; {
description = "Free Implementation of Audio Processing Technology codec (aptX)"; description = "Free Implementation of Audio Processing Technology codec (aptX)";

Loading…
Cancel
Save