02dfbde639
Candidates identified with git grep -F "$(grep -v '#' pkgs/build-support/fetchurl/mirrors.nix | grep -v nixos.org | grep :// | cut -d '"' -f 2)" and then manually reviewed and tested.
27 lines
658 B
Nix
27 lines
658 B
Nix
{ lib, stdenv, fetchurl, pkg-config, libopus }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libopusenc";
|
|
version = "0.2.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://mozilla/opus/libopusenc-${version}.tar.gz";
|
|
sha256 = "1ffb0vhlymlsq70pxsjj0ksz77yfm2x0a1x8q50kxmnkm1hxp642";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
doCheck = true;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libopus ];
|
|
|
|
meta = with lib; {
|
|
description = "Library for encoding .opus audio files and live streams";
|
|
license = licenses.bsd3;
|
|
homepage = "https://www.opus-codec.org/";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ pmiddend ];
|
|
};
|
|
}
|