summary refs log tree commit diff
path: root/pkgs/applications/audio/pianobar/default.nix
blob: 09bb75b2e4117367440cec9ef97bc6492ec22ca0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ fetchurl, stdenv, pkgconfig, libao, readline, json_c, libgcrypt, libav, curl }:

stdenv.mkDerivation rec {
  name = "pianobar-2015.11.22";

  src = fetchurl {
    url = "http://6xq.net/projects/pianobar/${name}.tar.bz2";
    sha256 = "0arjvs31d108l1mn2k2hxbpg3mxs47vqzxm0lzdpfcjvypkckyr3";
  };

  buildInputs = [
    pkgconfig libao json_c libgcrypt libav curl
  ];

  makeFlags="PREFIX=$(out)";

  CC = "gcc";
  CFLAGS = "-std=c99";

  meta = with stdenv.lib; {
    description = "A console front-end for Pandora.com";
    homepage = "http://6xq.net/projects/pianobar/";
    platforms = platforms.linux;
    license = licenses.mit; # expat version
    maintainers = with maintainers; [ eduarrrd ];
  };
}