3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #29914 from AndersonTorres/upload/twolame

twolame: init at 2017-09-27
This commit is contained in:
Orivej Desh 2017-10-01 08:00:59 +00:00 committed by GitHub
commit f1b54fb2e8
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub
, autoreconfHook, pkgconfig
, libsndfile }:
stdenv.mkDerivation rec {
name = "twolame-${version}";
version = "2017-09-27";
src = fetchFromGitHub {
owner = "njh";
repo = "twolame";
rev = "977c8ac55d8ca6d5f35d1d413a119dac2b3b0333";
sha256 = "1rq3yc8ygzdqid9zk6pixmm4w9sk2vrlx217lhn5bjaglv7iyf7x";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libsndfile ];
meta = with stdenv.lib;{
description = "A MP2 encoder";
longDescription = ''
TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on
tooLAME by Mike Cheng, which in turn is based upon the ISO dist10
code and portions of LAME.
'';
homepage = http://www.twolame.org/;
license = with licenses; [ lgpl2Plus ];
platforms = with platforms; [ unix ];
maintainers = with maintainers; [ AndersonTorres ];
};
}

View file

@ -10727,6 +10727,8 @@ with pkgs;
tremor = callPackage ../development/libraries/tremor { };
twolame = callPackage ../development/libraries/twolame { };
udns = callPackage ../development/libraries/udns { };
uid_wrapper = callPackage ../development/libraries/uid_wrapper { };