Initial release.

This commit is contained in:
Kevin Baensch 2020-07-01 15:59:31 +02:00
parent 699b3a0760
commit 72bd841f05
Signed by: derped
GPG key ID: C0F1D326C7626543
8 changed files with 335 additions and 0 deletions

26
pkgs/espeakup.nix Normal file
View 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;
};
}