linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libebur128 / default.nix
blobdb6c9f93faec0ef10f669ef1643fc3db9ae7a410
1 { lib, stdenv, fetchFromGitHub, cmake, speexdsp, pkg-config }:
3 stdenv.mkDerivation rec {
4   version = "1.2.5";
5   pname = "libebur128";
7   src = fetchFromGitHub {
8     owner = "jiixyj";
9     repo = "libebur128";
10     rev = "v${version}";
11     sha256 = "sha256-B6MOSbLfPvadXtXHSvxZCIpAH1Bnj6sItYRp+xH5HDA=";
12   };
14   nativeBuildInputs = [ cmake pkg-config ];
15   buildInputs = [ speexdsp ];
17   meta = with lib; {
18     description = "Implementation of the EBU R128 loudness standard";
19     homepage = "https://github.com/jiixyj/libebur128";
20     license = licenses.mit;
21     maintainers = [ maintainers.andrewrk ];
22     platforms = platforms.unix;
23   };