nixpkgs/pkgs/development/libraries/libebur128/default.nix

25 lines
643 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, speexdsp, pkg-config }:
2015-06-14 19:37:55 +00:00
stdenv.mkDerivation rec {
version = "1.2.4";
pname = "libebur128";
2015-06-14 19:37:55 +00:00
src = fetchFromGitHub {
owner = "jiixyj";
repo = "libebur128";
rev = "v${version}";
sha256 = "0n81rnm8dm1zmibkr2v3q79rsd609y0dbbsrbay18njcjva88p0g";
2015-06-14 19:37:55 +00:00
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ speexdsp ];
2015-06-14 19:37:55 +00:00
meta = with stdenv.lib; {
description = "Implementation of the EBU R128 loudness standard";
homepage = "https://github.com/jiixyj/libebur128";
2015-06-14 19:37:55 +00:00
license = licenses.mit;
2015-06-18 18:52:39 +00:00
maintainers = [ maintainers.andrewrk ];
platforms = platforms.unix;
2015-06-14 19:37:55 +00:00
};
}