mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
New package: Streamripper: Record MP3 radio streams.
This commit is contained in:
parent
4664108f8e
commit
0ec365cd63
2 changed files with 23 additions and 0 deletions
21
pkgs/applications/audio/streamripper/default.nix
Normal file
21
pkgs/applications/audio/streamripper/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue