mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
flite: 1.9.0 -> 2.0.0, fix build with Nix 1.12
It is failing with: RPATH of binary /nix/store/...-flite-.../bin/flite contains a forbidden reference to /build because of the rpath entry `../build/x86_64-linux-gnu/lib`.
This commit is contained in:
parent
ce98c217d7
commit
3f7751ecd4
2 changed files with 13 additions and 8 deletions
|
@ -1,18 +1,18 @@
|
|||
{ stdenv, fetchurl, pkgconfig }:
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "flite-1.9.0";
|
||||
name = "flite-2.0.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.festvox.org/bard/${name}-current.tar.bz2";
|
||||
sha256 = "197cc2a1f045b1666a29a9b5f035b3d676db6db94a4439d99a03b65e551ae2e0";
|
||||
url = "http://www.festvox.org/flite/packed/flite-2.0/${name}-release.tar.bz2";
|
||||
sha256 = "04g4r83jh4cl0irc8bg7njngcah7749956v9s6sh552kzmh3i337";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
patches = [ ./fix-rpath.patch ];
|
||||
|
||||
configureFlags = ''
|
||||
--enable-shared
|
||||
'';
|
||||
configureFlags = [ "--enable-shared" ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
description = "A small, fast run-time speech synthesis engine";
|
||||
|
|
5
pkgs/development/libraries/flite/fix-rpath.patch
Normal file
5
pkgs/development/libraries/flite/fix-rpath.patch
Normal file
|
@ -0,0 +1,5 @@
|
|||
--- a/main/Makefile
|
||||
+++ b/main/Makefile
|
||||
@@ -81 +80,1 @@ ifdef SHFLAGS
|
||||
-flite_LIBS_flags += -Wl,-rpath $(LIBDIR)
|
||||
+flite_LIBS_flags += -Wl,-rpath,$(INSTALLLIBDIR)
|
Loading…
Reference in a new issue