nixpkgs/pkgs/development/libraries/libopusenc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
658 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, libopus }:
2018-12-07 12:19:04 +00:00
2021-07-17 17:56:23 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "libopusenc";
2021-07-17 17:56:23 +00:00
version = "0.2.1";
2018-12-07 12:19:04 +00:00
src = fetchurl {
url = "mirror://mozilla/opus/libopusenc-${version}.tar.gz";
2018-12-07 12:19:04 +00:00
sha256 = "1ffb0vhlymlsq70pxsjj0ksz77yfm2x0a1x8q50kxmnkm1hxp642";
};
outputs = [ "out" "dev" ];
doCheck = true;
nativeBuildInputs = [ pkg-config ];
2018-12-07 12:19:04 +00:00
buildInputs = [ libopus ];
meta = with lib; {
2018-12-07 12:19:04 +00:00
description = "Library for encoding .opus audio files and live streams";
license = licenses.bsd3;
homepage = "https://www.opus-codec.org/";
2018-12-07 12:19:04 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ pmiddend ];
};
}