From 4dbd72f8564a2d8cc7f5a367358f0be96de3e639 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Sun, 26 Nov 2023 00:38:59 +0100 Subject: ahotts: update hash --- ahotts.scm | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/ahotts.scm b/ahotts.scm index 4b98466..f4a1429 100644 --- a/ahotts.scm +++ b/ahotts.scm @@ -2,6 +2,7 @@ #:use-module (guix packages) #:use-module (guix gexp) #:use-module (guix git-download) + #:use-module (guix build utils) #:use-module (guix build-system cmake) #:use-module ((guix licenses) #:prefix license:)) @@ -9,7 +10,7 @@ (define-public ahotts (package (name "ahotts") - (version "master") + (version "0.0.1") (source (origin (method git-fetch) (uri (git-reference @@ -17,13 +18,13 @@ (commit version))) (sha256 - (base32 "0za0bdqh523qm3lc9adaj8sgwq1r7dqh19xiqz1fqc64f3nh3iva")))) + (base32 "1mgwllpk8is81xs6sm67ri1scnx9fm2h4y5nv2pzk6h3r1j8kx51")))) (arguments - (list - #:tests? #f - #:configure-flags - #~(list (string-append "-DCMAKE_INSTALL_DATADIR=" #$output "/share") - (string-append "-DCMAKE_INSTALL_INCLUDEDIR=" #$output "/include")))) + `(#:tests? #f + #:phases (modify-phases %standard-phases (delete 'strip)) + #:configure-flags + ,#~(list (string-append "-DCMAKE_INSTALL_DATADIR=" #$output "/share") + (string-append "-DCMAKE_INSTALL_INCLUDEDIR=" #$output "/include")))) (build-system cmake-build-system) (home-page "https://github.com/aholab/AhoTTS") (synopsis "TTS for Basque and Spanish") -- cgit v1.2.3