aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/audio/rhvoice/default.nix
blob: a29fcf383b8e783ba85651c572e33788d1500ee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ stdenv, lib, pkgconfig, fetchFromGitHub, sconsPackages
, python, glibmm, libpulseaudio, libao }:

let
  version = "unstable-2018-02-10";
in stdenv.mkDerivation {
  pname = "rhvoice";
  inherit version;

  src = fetchFromGitHub {
    owner = "Olga-Yakovleva";
    repo = "RHVoice";
    rev = "7a25a881b0465e47a12d8029b56f3b71a1d02312";
    sha256 = "1gkrlmv7msh9qlm0gkjqpl9gswghpclfdwszr1p85v8vk6m63v0b";
  };

  nativeBuildInputs = [
    sconsPackages.scons_3_1_2 pkgconfig
  ];

  buildInputs = [
    python glibmm libpulseaudio libao
  ];

  # SConstruct patch
  #     Scons creates an independent environment that assumes standard POSIX paths.
  #     The patch is needed to push the nix environment.
  #     - PATH
  #     - PKG_CONFIG_PATH, to find available (sound) libraries
  #     - RPATH, to link to the newly built libraries

  patches = [ ./honor_nix_environment.patch ];

  meta = {
    description = "A free and open source speech synthesizer for Russian language and others";
    homepage = "https://github.com/Olga-Yakovleva/RHVoice/wiki";
    license = lib.licenses.gpl3;
    maintainers = with lib.maintainers; [ berce ];
    platforms = with lib.platforms; all;
  };
}