pianobar: Change license and clean up code

The license was set to unfree so that Hydra doesn't build it; this is
for potential problems arising from the Pandora TOS.
This commit is contained in:
Benjamin Cahill 2013-06-08 14:13:36 -05:00
parent 00e720471b
commit 9350c1d5ce

View file

@ -12,9 +12,7 @@ stdenv.mkDerivation rec {
pkgconfig libao faad2 libmad json_c libgcrypt gnutls
];
preBuild = "
makeFlags=\"PREFIX=$out\"
";
makeFlags="PREFIX=$(out)";
CC = "gcc";
CFLAGS = "-std=c99";
@ -23,5 +21,6 @@ stdenv.mkDerivation rec {
description = "A console front-end for Pandora.com";
homepage = "http://6xq.net/projects/pianobar/";
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.unfree;
};
}