Skip to content

Commit

Permalink
Merge pull request #93528 from marsam/fix-lv2-darwin-build
Browse files Browse the repository at this point in the history
lv2: fix build on darwin
  • Loading branch information
marsam committed Jul 20, 2020
2 parents caebe6a + 091d028 commit e8b9aa8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion pkgs/development/libraries/audio/lv2/default.nix
Expand Up @@ -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;
};
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/serd/default.nix
Expand Up @@ -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;
};
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/sord/default.nix
Expand Up @@ -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;
};
}

0 comments on commit e8b9aa8

Please sign in to comment.