Merge pull request #37644 from knedlsepp/fix-streamripper-on-darwin
streamripper: Enable darwin build
This commit is contained in:
commit
1998e247f4
pkgs/applications/audio/streamripper
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl , glib, pkgconfig, libogg, libvorbis }:
|
{ stdenv, fetchurl , glib, pkgconfig, libogg, libvorbis, libmad }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "streamripper-${version}";
|
name = "streamripper-${version}";
|
||||||
|
@ -10,13 +10,12 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ glib libogg libvorbis ];
|
buildInputs = [ glib libogg libvorbis libmad ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://streamripper.sourceforge.net/;
|
homepage = http://streamripper.sourceforge.net/;
|
||||||
description = "Application that lets you record streaming mp3 to your hard drive";
|
description = "Application that lets you record streaming mp3 to your hard drive";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = platforms.linux;
|
|
||||||
maintainers = with maintainers; [ the-kenny ];
|
maintainers = with maintainers; [ the-kenny ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue