mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
twolame: init at 2017-09-27
This commit is contained in:
parent
8f4084004e
commit
6024b7abe8
32
pkgs/development/libraries/twolame/default.nix
Normal file
32
pkgs/development/libraries/twolame/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -10720,6 +10720,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user