forked from mirrors/nixpkgs
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ stdenv, lib, fetchFromGitHub, autoconf, automake, which, libtool, pkgconfig
|
|
, ronn
|
|
, pcaudiolibSupport ? true, pcaudiolib
|
|
, sonicSupport ? true, sonic }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "espeak-ng";
|
|
version = "1.50";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "espeak-ng";
|
|
repo = "espeak-ng";
|
|
rev = version;
|
|
sha256 = "0jkqhf2h94vbqq7mg7mmm23bq372fa7mdk941my18c3vkldcir1b";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoconf automake which libtool pkgconfig ronn ];
|
|
|
|
buildInputs = lib.optional pcaudiolibSupport pcaudiolib
|
|
++ lib.optional sonicSupport sonic;
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
postInstall = lib.optionalString stdenv.isLinux ''
|
|
patchelf --set-rpath "$(patchelf --print-rpath $out/bin/espeak-ng)" $out/bin/speak-ng
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Open source speech synthesizer that supports over 70 languages, based on eSpeak";
|
|
homepage = "https://github.com/espeak-ng/espeak-ng";
|
|
changelog = "https://github.com/espeak-ng/espeak-ng/blob/${version}/CHANGELOG.md";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ aske ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|