summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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")