Merge pull request #93528 from marsam/fix-lv2-darwin-build

lv2: fix build on darwin
This commit is contained in:
Mario Rodas
2020-07-20 18:44:42 -05:00
committed by GitHub
3 changed files with 5 additions and 3 deletions

View File

@@ -12,11 +12,13 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig wafHook ];
buildInputs = [ gtk2 libsndfile python3 ];
wafConfigureFlags = stdenv.lib.optionals stdenv.isDarwin [ "--lv2dir=${placeholder "out"}/lib/lv2" ];
meta = with stdenv.lib; {
homepage = "https://lv2plug.in";
description = "A plugin standard for audio systems";
license = licenses.mit;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}

View File

@@ -16,6 +16,6 @@ stdenv.mkDerivation rec {
description = "A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples";
license = licenses.mit;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}

View File

@@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
description = "A lightweight C library for storing RDF data in memory";
license = licenses.mit;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}