nixpkgs/pkgs/tools/audio/larynx/default.nix
zimbatm 3b721f2001
larynx: unalias pkg-config argument
pkgconfig is an alias to pkg-config and should not be used in the inputs
2023-01-21 13:49:05 +01:00

65 lines
1.1 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, espeak-ng
, onnxruntime
, pcaudiolib
, larynx-train
}:
let
pname = "larynx";
version = "0.0.2";
in
stdenv.mkDerivation {
inherit pname version;
src = fetchFromGitHub {
owner = "rhasspy";
repo = "larynx2";
rev = "refs/tags/v${version}";
hash = "sha256-6SZ1T2A1DyVmBH2pJBHJdsnniRuLrI/dthRTRRyVSQQ=";
};
sourceRoot = "source/src/cpp";
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace "/usr/local/include/onnxruntime" "${onnxruntime}"
'';
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
espeak-ng
onnxruntime
pcaudiolib
];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
install -m 0755 larynx $out/bin
runHook postInstall
'';
passthru.tests = {
inherit larynx-train;
};
meta = with lib; {
changelog = "https://github.com/rhasspy/larynx2/releases/tag/v${version}";
description = "A fast, local neural text to speech system";
homepage = "https://github.com/rhasspy/larynx2";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}