diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-07-23 10:11:29 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-07-23 10:11:29 +0200 |
commit | 4c204d01d57ac7da11a5772d5d4e3254d1c2408f (patch) | |
tree | c7e5cb013abc742734acd9613674df4ebddfdeef /gnu/packages/purescript.scm | |
parent | 82bdb77082fa4e100761f70086b745dfb280c3ac (diff) | |
parent | 445a0359083388b5ee686e6e855f94a3aac5f79c (diff) | |
download | guix-4c204d01d57ac7da11a5772d5d4e3254d1c2408f.tar.gz |
Merge branch 'master' into gnome-team gnome-team
Diffstat (limited to 'gnu/packages/purescript.scm')
-rw-r--r-- | gnu/packages/purescript.scm | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/gnu/packages/purescript.scm b/gnu/packages/purescript.scm index df9267692a..ef58ecbf82 100644 --- a/gnu/packages/purescript.scm +++ b/gnu/packages/purescript.scm @@ -26,6 +26,7 @@ #:use-module (gnu packages haskell-web) #:use-module ((gnu packages python) #:select (python)) #:use-module (guix download) + #:use-module (guix gexp) #:use-module (guix git-download) #:use-module (guix packages) #:use-module (guix build-system haskell) @@ -34,13 +35,13 @@ (define-public purescript (package (name "purescript") - (version "0.15.9") + (version "0.15.10") (source (origin (method url-fetch) (uri (hackage-uri "purescript" version)) (sha256 - (base32 "1i9wszs5kwwq0l8l4if05y8xc8fih10assrdj8q1ipr0hx3zjawm")))) + (base32 "08pashk8pm4yjsaq2g94sqa2yd3rfq9fwpxa9qccvjv6in9zybf1")))) (build-system haskell-build-system) (properties '((upstream-name . "purescript"))) (inputs (list ghc-aeson @@ -96,21 +97,23 @@ ghc-typed-process ghc-happy)) (arguments - `(;; Tests require npm - #:tests? #f - #:configure-flags '("--flags=release") + (list + ;; Tests require npm + #:tests? #f + #:configure-flags + #~(list "--flags=release") #:haddock? #f #:phases - (modify-phases %standard-phases + #~(modify-phases %standard-phases (add-before 'configure 'update-constraints (lambda _ (substitute* "purescript.cabal" (("\\b(language-javascript|process)\\s+[^,]+" all dep) dep)))) (add-after 'register 'remove-libraries - (lambda* (#:key outputs #:allow-other-keys) + (lambda _ (delete-file-recursively - (string-append (assoc-ref outputs "out") "/lib"))))))) + (string-append #$output "/lib"))))))) (home-page "https://www.purescript.org/") (synopsis "Haskell inspired programming language compiling to JavaScript") (description |