nixpkgs/pkgs/applications/audio/pianobar/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
733 B
Nix
Raw Normal View History

{ fetchurl, lib, stdenv, pkg-config, libao, json_c, libgcrypt, ffmpeg, curl }:
stdenv.mkDerivation rec {
pname = "pianobar";
2022-04-05 19:20:50 +02:00
version = "2022.04.01";
src = fetchurl {
url = "https://6xq.net/projects/pianobar/${pname}-${version}.tar.bz2";
2022-04-05 19:20:50 +02:00
sha256 = "sha256-FnCyiGWouCpXu23+p/FuL6QUXS81SRC7FzgLMsm5R2M=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
libao json_c libgcrypt ffmpeg curl
];
2019-10-29 23:21:22 +01:00
makeFlags = [ "PREFIX=$(out)" ];
CC = "gcc";
CFLAGS = "-std=c99";
meta = with lib; {
description = "A console front-end for Pandora.com";
2019-09-18 03:38:51 +02:00
homepage = "https://6xq.net/pianobar/";
platforms = platforms.unix;
license = licenses.mit; # expat version
2024-02-11 03:19:15 +01:00
mainProgram = "pianobar";
};
}