e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
57 lines
1.4 KiB
Nix
57 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, autoconf
|
|
, automake
|
|
, libtool
|
|
, libsndfile
|
|
, libpulseaudio
|
|
, espeak-ng
|
|
, sonic
|
|
, utf8cpp
|
|
, darwin
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "ekho";
|
|
version = "9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hgneng";
|
|
repo = "ekho";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-VYN9tR3BJXd3UA0V5vqQJNItJe1e1knZ+S7tLeaeYYk=";
|
|
};
|
|
|
|
preConfigure = ''
|
|
./autogen.sh
|
|
'';
|
|
|
|
CXXFLAGS = [
|
|
"-O0"
|
|
"-I${lib.getDev utf8cpp}/include/utf8cpp"
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config autoconf automake libtool ];
|
|
|
|
buildInputs = [ libsndfile libpulseaudio espeak-ng sonic utf8cpp ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.AudioUnit ];
|
|
|
|
meta = with lib; {
|
|
description = "Chinese text-to-speech software";
|
|
homepage = "http://www.eguidedog.net/ekho.php";
|
|
longDescription = ''
|
|
Ekho (余音) is a free, open source and multilingual text-to-speech (TTS)
|
|
software. It supports Cantonese (Chinese dialect spoken in Hong Kong and
|
|
part of Guangdong province), Mandarin (standard Chinese), Zhaoan Hakka
|
|
(a dialect in Taiwan), Tibetan, Ngangien (an ancient Chinese before
|
|
Yuan Dynasty) and Korean (in trial).
|
|
'';
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ aaronjheng ];
|
|
mainProgram = "ekho";
|
|
};
|
|
})
|