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

30 lines
695 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, libopus }:
2018-12-07 12:19:04 +00:00
let
version = "0.2.1";
in
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
2019-08-13 22:52:01 +01:00
pname = "libopusenc";
inherit version;
2018-12-07 12:19:04 +00:00
src = fetchurl {
url = "https://archive.mozilla.org/pub/opus/libopusenc-${version}.tar.gz";
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 ];
};
}