nixpkgs/pkgs/development/libraries/aften/default.nix
Vincent Laporte 6e009edc41 aften: init at 0.0.8
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/
2017-09-09 05:58:09 +02:00

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;
};
}