New package: Streamripper: Record MP3 radio streams.

This commit is contained in:
Moritz Ulrich 2014-01-17 01:13:57 +01:00
parent 4664108f8e
commit 0ec365cd63
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, fetchurl , glib, pkgconfig, libogg, libvorbis }:
stdenv.mkDerivation rec {
name = "streamripper-${version}";
version = "1.64.6";
src = fetchurl {
url = "mirror://sourceforge/streamripper/${name}.tar.gz";
sha256 = "0hnyv3206r0rfprn3k7k6a0j959kagsfyrmyjm3gsf3vkhp5zmy1";
};
buildInputs = [ pkgconfig glib libogg libvorbis ];
meta = with stdenv.lib; {
homepage = http://streamripper.sourceforge.net/;
description = "Application that lets you record streaming mp3 to your hard drive";
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with stdenv.maintainers; [ the-kenny ];
};
}

View file

@ -10296,6 +10296,8 @@ let
splix = callPackage ../misc/cups/drivers/splix { };
streamripper = callPackage ../applications/audio/streamripper { };
tetex = callPackage ../tools/typesetting/tex/tetex { libpng = libpng12; };
tex4ht = callPackage ../tools/typesetting/tex/tex4ht { };