45 lines
1.4 KiB
Scheme
45 lines
1.4 KiB
Scheme
|
(use-modules (gnu packages haskell-xyz)
|
||
|
(gnu packages haskell-web)
|
||
|
(guix build-system haskell)
|
||
|
(guix download)
|
||
|
(guix gexp)
|
||
|
(guix git-download)
|
||
|
(guix licenses)
|
||
|
(guix packages)
|
||
|
(loom packages sjw))
|
||
|
|
||
|
(let
|
||
|
((%source-dir (dirname (current-filename)))
|
||
|
(ghc-template (load "ghc-template.scm")))
|
||
|
(package
|
||
|
(name "hablo")
|
||
|
(version "devel")
|
||
|
(source
|
||
|
(local-file %source-dir
|
||
|
#:recursive? #t
|
||
|
#:select? (git-predicate %source-dir)))
|
||
|
(build-system haskell-build-system)
|
||
|
(inputs
|
||
|
(list ghc-aeson
|
||
|
ghc-attoparsec
|
||
|
ghc-lucid
|
||
|
ghc-optparse-applicative
|
||
|
ghc-parsec
|
||
|
ghc-random
|
||
|
ghc-sjw
|
||
|
ghc-template
|
||
|
ghc-xdg-basedir))
|
||
|
(native-search-paths
|
||
|
(list
|
||
|
(search-path-specification (variable "SJW_PATH")
|
||
|
(files '("lib/SJW")))))
|
||
|
(home-page "https://git.marvid.fr/Tissevert/SJW")
|
||
|
(synopsis "The Simple Javascript Wrench")
|
||
|
(description
|
||
|
"SJW is a very simple tool to pack several JS modules into a single
|
||
|
script. It doesn't really do proper compilation work (yet) except
|
||
|
resolving the modules dependencies and detecting import loops but it
|
||
|
provides each module with an independent execution context in the
|
||
|
resulting script.")
|
||
|
(license gpl3+)))
|