2017-07-20 19:51:51 +02:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, flac, libao, libogg, popt }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "flac123";
|
2017-07-20 19:51:51 +02:00
|
|
|
version = "0.0.12";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://sourceforge/flac-tools/${pname}-${version}-release.tar.gz";
|
2017-07-20 19:51:51 +02:00
|
|
|
sha256 = "0zg4ahkg7v81za518x32wldf42g0rrvlrcqhrg9sv3li9bayyxhr";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ flac libao libogg popt ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://flac-tools.sourceforge.net/";
|
2017-07-20 19:51:51 +02:00
|
|
|
description = "A command-line program for playing FLAC audio files";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|