mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
885caf29af
See migrate away from ffmpeg_3 #120705.
29 lines
704 B
Nix
29 lines
704 B
Nix
{ fetchurl, lib, stdenv, pkg-config, libao, json_c, libgcrypt, ffmpeg, curl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pianobar";
|
|
version = "2020.11.28";
|
|
|
|
src = fetchurl {
|
|
url = "https://6xq.net/projects/pianobar/${pname}-${version}.tar.bz2";
|
|
sha256 = "1znlwybfpxsjqr1jmr8j0ci8wzmpzmk2yxb0qcx9w9a8nnbgnfv5";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
libao json_c libgcrypt ffmpeg 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
|
|
};
|
|
}
|