opusfile: new package
This commit is contained in:
parent
64266a2197
commit
1b9884b7ae
17
pkgs/applications/audio/opusfile/default.nix
Normal file
17
pkgs/applications/audio/opusfile/default.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{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";
|
||||||
|
};
|
||||||
|
}
|
@ -8646,6 +8646,8 @@ let
|
|||||||
inherit (pkgs.kde4) kdelibs;
|
inherit (pkgs.kde4) kdelibs;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
opusfile = callPackage ../applications/audio/opusfile { };
|
||||||
|
|
||||||
opusTools = callPackage ../applications/audio/opus-tools { };
|
opusTools = callPackage ../applications/audio/opus-tools { };
|
||||||
|
|
||||||
pan = callPackage ../applications/networking/newsreaders/pan {
|
pan = callPackage ../applications/networking/newsreaders/pan {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user