mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: purescript: Update to 0.15.9.
* gnu/packages/purescript.scm (purescript): Update to 0.15.9. [arguments]: Break line to satisfy the linter.
This commit is contained in:
parent
3070297839
commit
7a68780f50
1 changed files with 4 additions and 3 deletions
|
@ -34,13 +34,13 @@ (define-module (gnu packages purescript)
|
||||||
(define-public purescript
|
(define-public purescript
|
||||||
(package
|
(package
|
||||||
(name "purescript")
|
(name "purescript")
|
||||||
(version "0.15.8")
|
(version "0.15.9")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (hackage-uri "purescript" version))
|
(uri (hackage-uri "purescript" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1h5d5hjc9hrlk718lf62qzaq1l6ppr0l2b3fl78csyh86cihh750"))))
|
(base32 "1i9wszs5kwwq0l8l4if05y8xc8fih10assrdj8q1ipr0hx3zjawm"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
(properties '((upstream-name . "purescript")))
|
(properties '((upstream-name . "purescript")))
|
||||||
(inputs (list ghc-aeson
|
(inputs (list ghc-aeson
|
||||||
|
@ -109,7 +109,8 @@ (define-public purescript
|
||||||
dep))))
|
dep))))
|
||||||
(add-after 'register 'remove-libraries
|
(add-after 'register 'remove-libraries
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(delete-file-recursively (string-append (assoc-ref outputs "out") "/lib")))))))
|
(delete-file-recursively
|
||||||
|
(string-append (assoc-ref outputs "out") "/lib")))))))
|
||||||
(home-page "https://www.purescript.org/")
|
(home-page "https://www.purescript.org/")
|
||||||
(synopsis "Haskell inspired programming language compiling to JavaScript")
|
(synopsis "Haskell inspired programming language compiling to JavaScript")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue