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

28 lines
679 B
Nix
Raw Normal View History

{ fetchurl, stdenv, pkgconfig, libao, json_c, libgcrypt, ffmpeg_3, curl }:
stdenv.mkDerivation rec {
2020-04-10 11:54:58 +00:00
name = "pianobar-2020.04.05";
src = fetchurl {
url = "http://6xq.net/projects/pianobar/${name}.tar.bz2";
2020-04-10 11:54:58 +00:00
sha256 = "1034f9ilj9xjw12d6n4vadhl5jzrx0jv8gq1w0rg9hfc55mkn5vc";
};
nativeBuildInputs = [ pkgconfig ];
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 stdenv.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
};
}