add libebur128 package
This commit is contained in:
parent
1ee742b0ef
commit
cf9e72369e
21
pkgs/development/libraries/libebur128/default.nix
Normal file
21
pkgs/development/libraries/libebur128/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, speexdsp, pkgconfig }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "1.0.2";
|
||||||
|
name = "libebur128-${version}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jiixyj";
|
||||||
|
repo = "libebur128";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "19vy3ldbf931hjvn9jf9dvw1di3yx9ljxyk2yp5cnac1wqiza3jm";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ cmake speexdsp pkgconfig ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Implementation of the EBU R128 loudness standard";
|
||||||
|
homepage = https://github.com/jiixyj/libebur128;
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
@ -6727,6 +6727,8 @@ let
|
|||||||
|
|
||||||
libebml = callPackage ../development/libraries/libebml { };
|
libebml = callPackage ../development/libraries/libebml { };
|
||||||
|
|
||||||
|
libebur128 = callPackage ../development/libraries/libebur128 { };
|
||||||
|
|
||||||
libedit = callPackage ../development/libraries/libedit { };
|
libedit = callPackage ../development/libraries/libedit { };
|
||||||
|
|
||||||
libelf = callPackage ../development/libraries/libelf { };
|
libelf = callPackage ../development/libraries/libelf { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user