Merge pull request #140292 from Mindavi/drobilla/cross-master

This commit is contained in:
Artturi 2021-10-17 00:33:26 +03:00 committed by GitHub
commit ce22a20738
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -9,6 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "sha256-r/qA3ux4kh+GM15vw/GLgK7+z0JPaldV6fL6DrBxDt8=";
};
dontAddWafCrossFlags = true;
nativeBuildInputs = [ pkg-config python3 wafHook ];
meta = with lib; {

View File

@ -13,9 +13,14 @@ stdenv.mkDerivation rec {
fetchSubmodules = true;
};
preConfigure = ''
export PKGCONFIG="$PKG_CONFIG"
'';
nativeBuildInputs = [ pkg-config python3 wafHook ];
buildInputs = [ pcre ];
propagatedBuildInputs = [ serd ];
dontAddWafCrossFlags = true;
meta = with lib; {
homepage = "http://drobilla.net/software/sord";