nixpkgs/pkgs/applications/audio/opus-tools/default.nix

18 lines
486 B
Nix
Raw Normal View History

2013-12-07 23:08:46 +04:00
{stdenv, fetchurl, libogg, libao, pkgconfig, libopus, flac}:
stdenv.mkDerivation rec {
2013-12-07 23:08:46 +04:00
name = "opus-tools-0.1.8";
src = fetchurl {
url = "http://downloads.xiph.org/releases/opus/${name}.tar.gz";
2013-12-07 23:08:46 +04:00
sha256 = "1xm2lhdz92n9zmk496lyagisyzja46kx8q340vay9i51krbqiqg4";
};
2013-12-07 23:08:46 +04:00
buildInputs = [ libogg libao pkgconfig libopus flac ];
meta = {
description = "Tools to work with opus encoded audio streams";
homepage = http://www.opus-codec.org/;
license = "BSD";
};
}