summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSören Tempel <soeren+git@soeren-tempel.net>2026-08-30 11:59:25 +0200
committerSören Tempel <soeren+git@soeren-tempel.net>2026-08-30 11:59:50 +0200
commit6a02b0cf7bf603184ed499d9a37f035b7861f6ad (patch)
treea7c5869d23fc81030b014d57c4aa37d2e3f5769c /gnu
parent728242b1d3c8d103ae65cf8bfa3813e116463f63 (diff)
gnu: Add ghc-simple-get-opt.
* gnu/packages/haskell-xyz.scm (ghc-simple-get-opt): New variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/haskell-xyz.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 6be6b848443..7a8f64450f2 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -11429,6 +11429,26 @@ writing to stdout and other handles.")
11429 (native-inputs '()) 11429 (native-inputs '())
11430 (properties '((hidden? #t))))) 11430 (properties '((hidden? #t)))))
11431 11431
11432(define-public ghc-simple-get-opt
11433 (package
11434 (name "ghc-simple-get-opt")
11435 (version "0.5")
11436 (source
11437 (origin
11438 (method url-fetch)
11439 (uri (hackage-uri "simple-get-opt" version))
11440 (sha256
11441 (base32 "0mprf5fw691sfv35y48mf8lxl5i9i8qr8rxygdbnzsyq7vz4ndb1"))))
11442 (build-system haskell-build-system)
11443 (properties '((upstream-name . "simple-get-opt")))
11444 (home-page "https://github.com/yav/simple-get-opt")
11445 (synopsis "Simple library for processing command-line options")
11446 (description
11447 "This package provides a simple library for processing command-line options.
11448The library captures a common usage pattern of the @code{GetOpt} module form the
11449standard library.")
11450 (license license:bsd-3)))
11451
11432(define-public ghc-simple-reflect 11452(define-public ghc-simple-reflect
11433 (package 11453 (package
11434 (name "ghc-simple-reflect") 11454 (name "ghc-simple-reflect")