mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
18 lines
484 B
Nix
18 lines
484 B
Nix
{stdenv, fetchurl, pkgconfig, openssl, libogg, libopus}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "opusfile-0.4";
|
|
src = fetchurl {
|
|
url = "http://downloads.xiph.org/releases/opus/${name}.tar.gz";
|
|
sha256 = "0h4iwyqgid0cibqwzckz3r94qfp09099nk1cx5nz6i3cf08yldlq";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig openssl libogg libopus ];
|
|
|
|
meta = {
|
|
description = "High-level API for decoding and seeking in .opus files";
|
|
homepage = http://www.opus-codec.org/;
|
|
license = "BSD";
|
|
};
|
|
}
|