From 51061fa1481025da1735d6e0a21bd1f77cea3100 Mon Sep 17 00:00:00 2001 From: patrick brisbin Date: Sat, 5 Dec 2015 00:39:54 -0500 Subject: [PATCH] Add stack support Required upping the cabal lower-bound, which is, I think, un-controversial since 1.8 is still pretty low. --- .gitignore | 1 + stack.yaml | 6 ++++++ yesod-auth-oauth2.cabal | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 stack.yaml diff --git a/.gitignore b/.gitignore index 6fc8ffb..bfd7f93 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ cabal-dev/ .cabal-sandbox cabal.sandbox.config tags +.stack-work diff --git a/stack.yaml b/stack.yaml new file mode 100644 index 0000000..234143a --- /dev/null +++ b/stack.yaml @@ -0,0 +1,6 @@ +flags: + yesod-auth-oauth2: + network-uri: true +packages: +- '.' +resolver: lts-3.5 diff --git a/yesod-auth-oauth2.cabal b/yesod-auth-oauth2.cabal index 024d7f7..8a1a333 100644 --- a/yesod-auth-oauth2.cabal +++ b/yesod-auth-oauth2.cabal @@ -8,7 +8,7 @@ synopsis: OAuth 2.0 authentication plugins description: Library to authenticate with OAuth 2.0 for Yesod web applications. category: Web stability: Experimental -cabal-version: >= 1.6 +cabal-version: >= 1.8 build-type: Simple homepage: http://github.com/thoughtbot/yesod-auth-oauth2