···11{ lib, stdenv
22-, fetchurl, autoreconfHook, gettext
22+, fetchurl, autoreconfHook, gettext, netbsd
33}:
4455# Note: this package is used for bootstrapping fetchurl, and thus
···3333 # on Darwin, so disable NLS for now.
3434 ++ lib.optional stdenv.hostPlatform.isDarwin "--disable-nls";
35353636- nativeBuildInputs = [ gettext ]
3636+ nativeBuildInputs =
3737+ if stdenv.hostPlatform.isNetBSD then [ netbsd.gencat ] else [ gettext ]
3738 # Need to regenerate configure script with newer version in order to pass
3839 # "mr_cv_target_elf=yes", but `autoreconfHook` brings in `makeWrapper`
3940 # which doesn't work with the bootstrapTools bash, so can only do this
+27-10
pkgs/development/libraries/wolfssl/default.nix
···11-{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
11+{ lib
22+, stdenv
33+, fetchFromGitHub
44+, autoreconfHook
55+}:
2637stdenv.mkDerivation rec {
48 pname = "wolfssl";
55- version = "4.8.0";
99+ version = "4.8.1";
610711 src = fetchFromGitHub {
812 owner = "wolfSSL";
···1115 sha256 = "1w9gs9cq2yhj5s3diz3x1l15pgrc1pbm00jccizvcjyibmwyyf2h";
1216 };
13171414- # almost same as Debian but for now using --enable-all --enable-reproducible-build instead of --enable-distro to ensure options.h gets installed
1515- configureFlags = [ "--enable-all" "--enable-reproducible-build" "--enable-pkcs11" "--enable-tls13" "--enable-base64encode" ];
1818+ # Almost same as Debian but for now using --enable-all --enable-reproducible-build instead of --enable-distro to ensure options.h gets installed
1919+ configureFlags = [
2020+ "--enable-all"
2121+ "--enable-base64encode"
2222+ "--enable-pkcs11"
2323+ "--enable-reproducible-build"
2424+ "--enable-tls13"
2525+ ];
16261717- outputs = [ "out" "dev" "doc" "lib" ];
2727+ outputs = [
2828+ "dev"
2929+ "doc"
3030+ "lib"
3131+ "out"
3232+ ];
18331919- nativeBuildInputs = [ autoreconfHook ];
3434+ nativeBuildInputs = [
3535+ autoreconfHook
3636+ ];
20372138 postInstall = ''
2239 # fix recursive cycle:
···28452946 meta = with lib; {
3047 description = "A small, fast, portable implementation of TLS/SSL for embedded devices";
3131- homepage = "https://www.wolfssl.com/";
3232- platforms = platforms.all;
3333- license = licenses.gpl2Plus;
3434- maintainers = with maintainers; [ mcmtroffaes ];
4848+ homepage = "https://www.wolfssl.com/";
4949+ platforms = platforms.all;
5050+ license = licenses.gpl2Plus;
5151+ maintainers = with maintainers; [ fab mcmtroffaes ];
3552 };
3653}
···11{ lib
22-, python38
22+, python3
33, fetchFromGitHub
44, fetchpatch
55}:
···1010# $ tts-server --model_name tts_models/en/ljspeech/glow-tts --vocoder_name vocoder_models/universal/libri-tts/fullband-melgan
1111#
1212# If you upgrade from an old version you may have to delete old models from ~/.local/share/tts
1313-# Also note that your tts version might not support all available models so check:
1414-# https://github.com/coqui-ai/TTS/releases/tag/v0.1.2
1513#
1614# For now, for deployment check the systemd unit in the pull request:
1715# https://github.com/NixOS/nixpkgs/pull/103851#issue-521121136
18161919-let
2020- python3 = python38;
2121-in python3.pkgs.buildPythonApplication rec {
1717+python3.pkgs.buildPythonApplication rec {
2218 pname = "tts";
2323- version = "0.1.2";
2424-2525- # https://github.com/coqui-ai/TTS/issues/570
2626- disabled = python3.pythonAtLeast "3.9";
1919+ version = "0.1.3";
27202821 src = fetchFromGitHub {
2922 owner = "coqui-ai";
3023 repo = "TTS";
3124 rev = "v${version}";
3232- sha256 = "1qgiaqn7iqxyf54qgnpmli69nw9s3gmi9qv874jsgycykc10hjg4";
2525+ sha256 = "0akhiaaqz53bf5zyps3vgjifmgh5wvcc9r4lrq9hmj3dds03vkjq";
3326 };
34273528 postPatch = ''