Skip to content

Commit

Permalink
mp3blaster: fix darwin build
Browse files Browse the repository at this point in the history
/cc ZHF NixOS#36454
  • Loading branch information
knedlsepp committed Mar 25, 2018
1 parent a6425fc commit 11aae21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/audio/mp3blaster/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, ncurses, libvorbis }:
{ stdenv, fetchFromGitHub, ncurses, libvorbis, SDL }:
stdenv.mkDerivation rec {

version = "3.2.6";
Expand All @@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
buildInputs = [
ncurses
libvorbis
];
] ++ stdenv.lib.optional stdenv.isDarwin SDL;

buildFlags = [ "CXXFLAGS=-Wno-narrowing" ];

Expand Down

0 comments on commit 11aae21

Please sign in to comment.