summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2023-11-26 00:38:59 +0100
committerEkaitz Zarraga <ekaitz@elenq.tech>2023-12-06 20:54:23 +0100
commit4dbd72f8564a2d8cc7f5a367358f0be96de3e639 (patch)
tree32b0d2c085e540b0c7cec2952ea367f2a90dfd12
parent64f47cc44dc053594d7f40499bf31a4813d804fa (diff)
ahotts: update hash
-rw-r--r--ahotts.scm15
1 files 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")