2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchurl , glib, pkg-config, libogg, libvorbis, libmad }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "streamripper";
|
|
|
|
version = "1.64.6";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/streamripper/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "0hnyv3206r0rfprn3k7k6a0j959kagsfyrmyjm3gsf3vkhp5zmy1";
|
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ glib libogg libvorbis libmad ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "http://streamripper.sourceforge.net/";
|
|
|
|
description = "Application that lets you record streaming mp3 to your hard drive";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
}
|