Initial release.
This commit is contained in:
parent
699b3a0760
commit
72bd841f05
8 changed files with 335 additions and 0 deletions
26
pkgs/espeakup.nix
Normal file
26
pkgs/espeakup.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, fetchFromGitHub
|
||||
, espeak-classic }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "espeakup";
|
||||
version = "0.80.${rev}";
|
||||
rev = "e69d61b2d88d8dc679558dea03c48130127102ac";
|
||||
|
||||
buildInputs = [ espeak-classic ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "williamh";
|
||||
repo = name;
|
||||
inherit rev;
|
||||
sha256 = "0zs5asvxavbibpi98pnhl9y2yc701nxf7h17xm6a1q3liippvix1";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
substituteInPlace Makefile --replace "/usr/local" $out
|
||||
'';
|
||||
meta = with stdenv.lib; {
|
||||
description = "espeakup is a program which makes it possible for speakup to use the espeak software synthesizer.";
|
||||
homepage = "https://github.com/williamh/espeakup";
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue