flac123: init at 0.0.12 (#27520)

* flac123: init at 0.0.12

* flac123: add to all-packages.nix

* flac123: use autoreconfHook
This commit is contained in:
Yegor Timoshenko 2017-07-20 20:51:51 +03:00 committed by Franz Pletz
parent e69dfc252a
commit ec4f51fd9e
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, fetchurl, autoreconfHook, flac, libao, libogg, popt }:
stdenv.mkDerivation rec {
name = "flac123-${version}";
version = "0.0.12";
src = fetchurl {
url = "mirror://sourceforge/flac-tools/${name}-release.tar.gz";
sha256 = "0zg4ahkg7v81za518x32wldf42g0rrvlrcqhrg9sv3li9bayyxhr";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ flac libao libogg popt ];
meta = with stdenv.lib; {
homepage = http://flac-tools.sourceforge.net/;
description = "A command-line program for playing FLAC audio files";
license = licenses.gpl2Plus;
platforms = platforms.all;
};
}

View File

@ -1934,6 +1934,8 @@ with pkgs;
fdk_aac = callPackage ../development/libraries/fdk-aac { };
flac123 = callPackage ../applications/audio/flac123 { };
flamegraph = callPackage ../development/tools/flamegraph { };
# Awkward historical capitalization for flamegraph. Remove eventually