flvstreamer: supports darwin

This commit is contained in:
Matthew Bauer
2017-04-20 23:45:18 -05:00
parent 83d3976927
commit 9e92c53b53

View File

@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
buildPhase = ''
make posix
make CC=cc posix
'';
installPhase = ''
@@ -34,6 +34,6 @@ stdenv.mkDerivation rec {
homepage = http://savannah.nongnu.org/projects/flvstreamer;
maintainers = [ stdenv.lib.maintainers.thammers ];
platforms = stdenv.lib.platforms.linux;
platforms = with stdenv.lib.platforms; linux ++ darwin;
};
}