uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
26
pkgs/tools/audio/picotts/default.nix
Normal file
26
pkgs/tools/audio/picotts/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, popt }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "picotts";
|
||||
version = "unstable-2018-10-19";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
repo = "picotts";
|
||||
owner = "naggety";
|
||||
rev = "2f86050dc5da9ab68fc61510b594d8e6975c4d2d";
|
||||
sha256 = "1k2mdv9llkh77jr4qr68yf0zgjqk87np35fgfmnc3rpdp538sccl";
|
||||
};
|
||||
nativeBuildInputs = [ autoconf automake ];
|
||||
buildInputs = [ libtool popt ];
|
||||
sourceRoot = "source/pico";
|
||||
preConfigure = "./autogen.sh";
|
||||
meta = {
|
||||
description = "Text to speech voice sinthesizer from SVox";
|
||||
homepage = "https://github.com/naggety/picotts";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = [ lib.maintainers.canndrew ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue