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.
27 lines
679 B
Nix
27 lines
679 B
Nix
{ fetchurl, lib, stdenv, pkg-config, libao, json_c, libgcrypt, ffmpeg_3, curl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pianobar-2020.11.28";
|
|
|
|
src = fetchurl {
|
|
url = "http://6xq.net/projects/pianobar/${name}.tar.bz2";
|
|
sha256 = "1znlwybfpxsjqr1jmr8j0ci8wzmpzmk2yxb0qcx9w9a8nnbgnfv5";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
libao json_c libgcrypt ffmpeg_3 curl
|
|
];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
CC = "gcc";
|
|
CFLAGS = "-std=c99";
|
|
|
|
meta = with lib; {
|
|
description = "A console front-end for Pandora.com";
|
|
homepage = "https://6xq.net/pianobar/";
|
|
platforms = platforms.unix;
|
|
license = licenses.mit; # expat version
|
|
};
|
|
}
|