summary refs log tree commit diff
path: root/pkgs/development/libraries/libebur128/default.nix
blob: db8363d8522d98b97feaa7cd29086bf6aa20ce67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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;
    maintainers = [ maintainers.andrewrk ];
  };
}