[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#38423] [PATCH 48/49] gnu: Add postgrest.
From: |
Robert Vollmert |
Subject: |
[bug#38423] [PATCH 48/49] gnu: Add postgrest. |
Date: |
Fri, 29 Nov 2019 12:37:50 +0100 |
* gnu/packages/haskell-apps.scm (postgrest): New variable.
---
gnu/packages/haskell-apps.scm | 67 +++++++++++++++++++++++++++++++++++
1 file changed, 67 insertions(+)
diff --git a/gnu/packages/haskell-apps.scm b/gnu/packages/haskell-apps.scm
index d5c31cbb0b..1cca90f429 100644
--- a/gnu/packages/haskell-apps.scm
+++ b/gnu/packages/haskell-apps.scm
@@ -724,3 +724,70 @@ advanced user's otherwise working script to fail under
future circumstances.
code in a file, just clean up import statements and a few other tedious
items. This tool tries to help where necessary without getting in the way.")
(license license:bsd-3)))
+
+(define-public postgrest
+ (package
+ (name "postgrest")
+ (version "6.0.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://hackage.haskell.org/package/postgrest/postgrest-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "0c1yapjwsccqmj6jh8bkgv15p83dh7bd7ib68cd80pi3n9dplqvw"))))
+ (build-system haskell-build-system)
+ (arguments `(#:tests? #f)) ; tests require a running postgresql server
+ (inputs
+ `(("ghc-aeson" ,ghc-aeson)
+ ("ghc-ansi-wl-pprint" ,ghc-ansi-wl-pprint)
+ ("ghc-base64-bytestring" ,ghc-base64-bytestring)
+ ("ghc-case-insensitive" ,ghc-case-insensitive)
+ ("ghc-cassava" ,ghc-cassava)
+ ("ghc-configurator-pg" ,ghc-configurator-pg)
+ ("ghc-contravariant" ,ghc-contravariant)
+ ("ghc-contravariant-extras"
+ ,ghc-contravariant-extras)
+ ("ghc-either" ,ghc-either)
+ ("ghc-gitrev" ,ghc-gitrev)
+ ("ghc-hasql" ,ghc-hasql)
+ ("ghc-hasql-pool" ,ghc-hasql-pool)
+ ("ghc-hasql-transaction" ,ghc-hasql-transaction)
+ ("ghc-heredoc" ,ghc-heredoc)
+ ("ghc-http" ,ghc-http)
+ ("ghc-http-types" ,ghc-http-types)
+ ("ghc-insert-ordered-containers"
+ ,ghc-insert-ordered-containers)
+ ("ghc-interpolatedstring-perl6"
+ ,ghc-interpolatedstring-perl6)
+ ("ghc-jose" ,ghc-jose)
+ ("ghc-lens" ,ghc-lens)
+ ("ghc-lens-aeson" ,ghc-lens-aeson)
+ ("ghc-network-uri" ,ghc-network-uri)
+ ("ghc-optparse-applicative"
+ ,ghc-optparse-applicative)
+ ("ghc-protolude" ,ghc-protolude)
+ ("ghc-ranged-sets" ,ghc-ranged-sets)
+ ("ghc-regex-tdfa" ,ghc-regex-tdfa)
+ ("ghc-scientific" ,ghc-scientific)
+ ("ghc-swagger2" ,ghc-swagger2)
+ ("ghc-unordered-containers"
+ ,ghc-unordered-containers)
+ ("ghc-vector" ,ghc-vector)
+ ("ghc-wai" ,ghc-wai)
+ ("ghc-wai-cors" ,ghc-wai-cors)
+ ("ghc-wai-extra" ,ghc-wai-extra)
+ ("ghc-wai-middleware-static"
+ ,ghc-wai-middleware-static)
+ ("ghc-cookie" ,ghc-cookie)
+ ("ghc-auto-update" ,ghc-auto-update)
+ ("ghc-warp" ,ghc-warp)
+ ("ghc-retry" ,ghc-retry)))
+ (home-page "https://postgrest.org")
+ (synopsis "REST API for any Postgres database")
+ (description
+ "Reads the schema of a PostgreSQL database and creates RESTful routes for
the tables and views, supporting all HTTP verbs that security permits.")
+ (license license:expat)))
--
2.21.0 (Apple Git-122.2)
- [bug#38423] [PATCH 24/49] gnu: Add ghc-directory., (continued)
- [bug#38423] [PATCH 24/49] gnu: Add ghc-directory., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 19/49] gnu: Add ghc-data-bword., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 23/49] gnu: Add ghc-data-textual., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 13/49] gnu: Add ghc-insert-ordered-containers., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 28/49] gnu: Add ghc-concise., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 27/49] gnu: Add ghc-type-hint., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 39/49] gnu: Add ghc-postgresql-libpq., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 32/49] gnu: Add ghc-bytestring-tree-builder., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 22/49] gnu: Add ghc-data-serializer., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 49/49] gnu: Add postgrest service., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 48/49] gnu: Add postgrest.,
Robert Vollmert <=
- [bug#38423] [PATCH 33/49] gnu: Add ghc-bytestring-strict-builder., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 15/49] gnu: Add ghc-mtl-compat., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 20/49] gnu: Add ghc-data-dword., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 02/49] gnu: Add ghc-text-latin1., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 16/49] gnu: Add ghc-monad-time., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 25/49] gnu: Add ghc-network-ip., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 46/49] gnu: Add ghc-tasty-hspec., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 29/49] gnu: Add ghc-lens-aeson., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 36/49] gnu: Add ghc-loch-th., Robert Vollmert, 2019/11/29
- [bug#38423] [PATCH 43/49] gnu: Add ghc-swagger2., Robert Vollmert, 2019/11/29