1(use-modules ((guix ui) #:select (load* make-user-module))2 ((guix profiles) #:select (concatenate-manifests)))34;; TODO: Doesn't fully work yet because `cabal build` employs stricter5;; dependency checking in comparison to whatever haskell-build-system6;; uses; hence, cabal discovers that ghc-time-1.14 is incompatible with7;; the version of the unix library vendored by ghc-9.2.8;;9;; All of this will resolve itself once ghc-9.4 is stabilized in Guix.1011(define datepicker12 (load* "package.scm" (make-user-module '())))1314(concatenate-manifests15 (list (package->development-manifest datepicker)16 (specifications->manifest17 ;; Extra development dependencies.18 ;;19 ;; TODO: Add ormolu20 (list "coreutils" "cabal-install" "git"))))