2018-09-01 20:35:10 +01:00
|
|
|
{ fetchurl, stdenv, pkgconfig, libao, json_c, libgcrypt, ffmpeg, curl }:
|
2013-06-08 02:50:41 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-07 22:13:01 +01:00
|
|
|
name = "pianobar-2019.02.14";
|
2013-06-08 02:50:41 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://6xq.net/projects/pianobar/${name}.tar.bz2";
|
2019-04-07 22:13:01 +01:00
|
|
|
sha256 = "07z21vmlqpmvb3294r384iqbx972rwcx6chrdlkfv4hlnc9h7gf0";
|
2013-06-08 02:50:41 +01:00
|
|
|
};
|
|
|
|
|
2017-09-14 20:24:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2013-06-08 02:50:41 +01:00
|
|
|
buildInputs = [
|
2018-09-01 20:35:10 +01:00
|
|
|
libao json_c libgcrypt ffmpeg curl
|
2013-06-08 02:50:41 +01:00
|
|
|
];
|
|
|
|
|
2019-10-29 22:21:22 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2013-06-08 02:50:41 +01:00
|
|
|
|
|
|
|
CC = "gcc";
|
|
|
|
CFLAGS = "-std=c99";
|
|
|
|
|
2015-05-14 18:09:10 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-06-08 02:50:41 +01:00
|
|
|
description = "A console front-end for Pandora.com";
|
2019-09-18 02:38:51 +01:00
|
|
|
homepage = "https://6xq.net/pianobar/";
|
|
|
|
platforms = platforms.unix;
|
2015-05-14 18:09:10 +01:00
|
|
|
license = licenses.mit; # expat version
|
2013-06-08 02:50:41 +01:00
|
|
|
};
|
|
|
|
}
|