From 7feabd1a0aea98d0f06e50df7991de619716e370 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Fri, 7 Jun 2024 17:44:45 +0200 Subject: [PATCH] chore(nix): add yesod-auth-oauth2 flake input --- nix/uniworx/backend.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nix/uniworx/backend.nix b/nix/uniworx/backend.nix index 03fdb8431..fdd129cd9 100644 --- a/nix/uniworx/backend.nix +++ b/nix/uniworx/backend.nix @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2022-2023 Gregor Kleen , Steffen Jost +# SPDX-FileCopyrightText: 2022-2024 Sarah Vaupel , Gregor Kleen , Steffen Jost # # SPDX-License-Identifier: AGPL-3.0-or-later @@ -7,7 +7,7 @@ with prev.lib; let - haskellInputs = ["encoding" "memcached-binary" "conduit-resumablesink" "HaskellNet-SSL" "ldap-client" "serversession" "xss-sanitize" "colonnade" "minio-hs" "cryptoids" "zip-stream" "yesod" "cryptonite" "esqueleto"]; + haskellInputs = ["encoding" "memcached-binary" "conduit-resumablesink" "HaskellNet-SSL" "ldap-client" "serversession" "xss-sanitize" "colonnade" "minio-hs" "cryptoids" "zip-stream" "yesod" "cryptonite" "esqueleto" "yesod-auth-oauth2"]; in { uniworx = final.haskell-nix.stackProject { src = prev.stdenv.mkDerivation { @@ -54,6 +54,7 @@ in { yesod-form.src = "${inputs.yesod}/yesod-form"; yesod-auth.src = "${inputs.yesod}/yesod-auth"; yesod-test.src = "${inputs.yesod}/yesod-test"; + yesod-auth-oauth2.src = inputs.yesod-auth-oauth2; cryptonite.src = inputs.cryptonite; esqueleto.src = inputs.esqueleto; };