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:
parent
e69dfc252a
commit
ec4f51fd9e
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue