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

28 lines
679 B
Nix
Raw Normal View History

{ fetchurl, lib, stdenv, pkg-config, libao, json_c, libgcrypt, ffmpeg_3, curl }:
stdenv.mkDerivation rec {
2020-12-03 06:57:36 +00:00
name = "pianobar-2020.11.28";
src = fetchurl {
url = "http://6xq.net/projects/pianobar/${name}.tar.bz2";
2020-12-03 06:57:36 +00:00
sha256 = "1znlwybfpxsjqr1jmr8j0ci8wzmpzmk2yxb0qcx9w9a8nnbgnfv5";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
libao json_c libgcrypt ffmpeg_3 curl
];
2019-10-29 22:21:22 +00:00
makeFlags = [ "PREFIX=$(out)" ];
CC = "gcc";
CFLAGS = "-std=c99";
meta = with lib; {
description = "A console front-end for Pandora.com";
2019-09-18 01:38:51 +00:00
homepage = "https://6xq.net/pianobar/";
platforms = platforms.unix;
license = licenses.mit; # expat version
};
}