summary refs log tree commit diff
path: root/pkgs/development/libraries/libebur128/default.nix
blob: 16624a78079781e75b7ed60160f2e28466b0f84a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchFromGitHub, cmake, speexdsp, pkgconfig }:

stdenv.mkDerivation rec {
  version = "1.2.4";
  pname = "libebur128";

  src = fetchFromGitHub {
    owner = "jiixyj";
    repo = "libebur128";
    rev = "v${version}";
    sha256 = "0n81rnm8dm1zmibkr2v3q79rsd609y0dbbsrbay18njcjva88p0g";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ cmake speexdsp ];

  meta = with stdenv.lib; {
    description = "Implementation of the EBU R128 loudness standard";
    homepage = https://github.com/jiixyj/libebur128;
    license = licenses.mit;
    maintainers = [ maintainers.andrewrk ];
    platforms = platforms.unix;
  };
}