3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #114417 from veprbl/pr/sherpa_darwin_fix

sherpa: fix on darwin
This commit is contained in:
Sandro 2021-02-27 14:23:38 +01:00 committed by GitHub
commit 299a683718
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "1iwa17s8ipj6a2b8zss5csb1k5y9s5js38syvq932rxcinbyjsl4";
};
postPatch = ''
postPatch = lib.optional (stdenv.hostPlatform.libc == "glibc") ''
sed -ie '/sys\/sysctl.h/d' ATOOLS/Org/Run_Parameter.C
'';