mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
531e4b80c9
Only acts on one-line dependency lists.
25 lines
649 B
Nix
25 lines
649 B
Nix
{ 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";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|