9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
21 lines
605 B
Nix
21 lines
605 B
Nix
{ 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 = "http://streamripper.sourceforge.net/";
|
|
description = "Application that lets you record streaming mp3 to your hard drive";
|
|
license = licenses.gpl2;
|
|
};
|
|
}
|