6e009edc41
Aften is an audio encoder which generates compressed audio streams based on ATSC A/52 specification. This type of audio is also known as AC-3 or Dolby® Digital and is one of the audio codecs used in DVD-Video content. Homepage: http://aften.sourceforge.net/
22 lines
567 B
Nix
22 lines
567 B
Nix
{ stdenv, fetchurl, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "aften-${version}";
|
|
version = "0.0.8";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/aften/${name}.tar.bz2";
|
|
sha256 = "02hc5x9vkgng1v9bzvza9985ifrjd7fjr7nlpvazp4mv6dr89k47";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
cmakeFlags = [ "-DSHARED=ON" ];
|
|
|
|
meta = {
|
|
description = "An audio encoder which generates compressed audio streams based on ATSC A/52 specification";
|
|
homepage = "http://aften.sourceforge.net/";
|
|
license = stdenv.lib.licenses.lgpl2;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|