3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #35683 from calvertvl/fix_mp3blaster_ogg

mp3blaster: Build with support for ogg vorbis
This commit is contained in:
lewo 2018-02-27 08:49:44 +01:00 committed by GitHub
commit ec3547e8f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, ncurses }:
{ stdenv, fetchFromGitHub, ncurses, libvorbis }:
stdenv.mkDerivation rec {
version = "3.2.6";
@ -12,7 +12,10 @@ stdenv.mkDerivation rec {
sha256 = "0pzwml3yhysn8vyffw9q9p9rs8gixqkmg4n715vm23ib6wxbliqs";
};
buildInputs = [ ncurses ];
buildInputs = [
ncurses
libvorbis
];
buildFlags = [ "CXXFLAGS=-Wno-narrowing" ];