summary refs log tree commit diff
path: root/pkgs/applications/audio/streamripper/default.nix
blob: a44a77237d1fe5fde25e56261d5156278d3c7967 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, stdenv, fetchurl , glib, pkg-config, libogg, libvorbis, libmad }:

stdenv.mkDerivation rec {
  pname = "streamripper";
  version = "1.64.6";

  src = fetchurl {
    url = "mirror://sourceforge/streamripper/${pname}-${version}.tar.gz";
    sha256 = "0hnyv3206r0rfprn3k7k6a0j959kagsfyrmyjm3gsf3vkhp5zmy1";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ glib libogg libvorbis libmad ];

  meta = with lib; {
    homepage = "https://streamripper.sourceforge.net/";
    description = "Application that lets you record streaming mp3 to your hard drive";
    license = licenses.gpl2;
  };
}