nixpkgs/pkgs/applications/audio/pianobar/default.nix
R. RyanTM c39795ed46 pianobar: 2018.06.22 -> 2019.02.14 (#58750)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pianobar/versions
2019-04-07 23:13:01 +02:00

28 lines
676 B
Nix

{ fetchurl, stdenv, pkgconfig, libao, json_c, libgcrypt, ffmpeg, curl }:
stdenv.mkDerivation rec {
name = "pianobar-2019.02.14";
src = fetchurl {
url = "http://6xq.net/projects/pianobar/${name}.tar.bz2";
sha256 = "07z21vmlqpmvb3294r384iqbx972rwcx6chrdlkfv4hlnc9h7gf0";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
libao json_c libgcrypt ffmpeg 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
};
}