mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
Adding opus-tools.
At least a program that uses libopus.
This commit is contained in:
parent
664ee28936
commit
62c5eab5cd
17
pkgs/applications/audio/opus-tools/default.nix
Normal file
17
pkgs/applications/audio/opus-tools/default.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{stdenv, fetchurl, libogg, libao, pkgconfig, libopus}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "opus-tools-0.1.5";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://downloads.xiph.org/releases/opus/${name}.tar.gz";
|
||||||
|
sha256 = "0184zfamg3qcjknk4liz4smws3mbv77gjhq2pn9xgcx9nw78srvn";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libogg libao pkgconfig libopus ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Tools to work with opus encoded audio streams";
|
||||||
|
homepage = http://www.opus-codec.org/;
|
||||||
|
license = "BSD";
|
||||||
|
};
|
||||||
|
}
|
@ -7473,6 +7473,8 @@ let
|
|||||||
inherit (pkgs.kde4) kdelibs;
|
inherit (pkgs.kde4) kdelibs;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
opusTools = callPackage ../applications/audio/opus-tools { };
|
||||||
|
|
||||||
pan = callPackage ../applications/networking/newsreaders/pan {
|
pan = callPackage ../applications/networking/newsreaders/pan {
|
||||||
spellChecking = false;
|
spellChecking = false;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user