forked from mirrors/nixpkgs
Merge pull request #146462 from flurie/fix-ccextractor-darwin
ccextractor: fix build on x86_64-darwin
This commit is contained in:
commit
60494245cc
|
@ -23,7 +23,12 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "sha256-usVAKBkdd8uz9cD5eLd0hnwGonOJLscRdc+iWDlNXVc=";
|
||||
};
|
||||
|
||||
sourceRoot = "source/src";
|
||||
postPatch = lib.optionalString stdenv.isDarwin ''
|
||||
substituteInPlace src/CMakeLists.txt \
|
||||
--replace 'add_definitions(-DGPAC_CONFIG_LINUX)' 'add_definitions(-DGPAC_CONFIG_DARWIN)'
|
||||
'';
|
||||
|
||||
cmakeDir = "../src";
|
||||
|
||||
nativeBuildInputs = [ pkg-config cmake makeWrapper ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue