guix_mirror_bot pushed a commit to branch haskell-team
in repository guix.
commit 1b6fac8ec83a3c62296fe1c255158a20e5032247
Author: Saku Laesvuori <[email protected]>
AuthorDate: Fri Oct 24 14:44:50 2025 +0300
gnu: ghc-easyplot: Fix build
* gnu/packages/haskell-xyz.scm (ghc-easyplot)[source]: Add a snippet to
fix the name of the setup script.
Change-Id: Ica8955b566eaf9cd76a1fedfe79d9f1383615dc8
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/haskell-xyz.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 56ae1b9aea..b1b19fa72b 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -3561,7 +3561,8 @@ diagrams framework}, but potentially has other
applications as well.")
(method url-fetch)
(uri (hackage-uri "easyplot" version))
(sha256
- (base32 "18kndgvdj2apjpfga6fp7m16y1gx8zrwp3c5vfj03sx4v6jvciqk"))))
+ (base32 "18kndgvdj2apjpfga6fp7m16y1gx8zrwp3c5vfj03sx4v6jvciqk"))
+ (snippet #~(rename-file "Setup.lhs" "Setup.hs")))) ; the file lacks lhs
syntax
(build-system haskell-build-system)
(properties '((upstream-name . "easyplot")))
(home-page "http://hub.darcs.net/scravy/easyplot")