mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
887295fd2d
@the-kenny did a good job in the past and is set as maintainer in many package, however since 2017-2018 he stopped contributing. To create less confusion in pull requests when people try to request his feedback, I removed him as maintainer from all packages.
21 lines
605 B
Nix
21 lines
605 B
Nix
{ stdenv, fetchurl , glib, pkgconfig, 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 = [ pkgconfig ];
|
|
buildInputs = [ glib libogg libvorbis libmad ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://streamripper.sourceforge.net/";
|
|
description = "Application that lets you record streaming mp3 to your hard drive";
|
|
license = licenses.gpl2;
|
|
};
|
|
}
|