diff options
| author | stuebinm | 2026-05-02 14:30:51 +0200 |
|---|---|---|
| committer | stuebinm | 2026-05-02 14:45:27 +0200 |
| commit | 4a1aa2f9ebd4624a677d99a4db77e4a564e56942 (patch) | |
| tree | 6f0a868b91d3e7429bfc77fdd6a3080bd83745b5 | |
| parent | 84e90d7b01cd1d9fc3dd76524011b640a9428a6e (diff) | |
default.nix: fixup conftrack dependency
| -rw-r--r-- | default.nix | 7 | ||||
| -rw-r--r-- | lib/Yesod/Auth/Uffd.hs | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/default.nix b/default.nix index 4939cd6..90d8e1c 100644 --- a/default.nix +++ b/default.nix @@ -12,7 +12,12 @@ let mkDerivation { pname = "conftrack"; version = "0.0.1"; - sha256 = "51bdd96aff8537b4871498d67b936df8ab360b886aabec21a1dcb187a73aa2ec"; + # sha256 = "51bdd96aff8537b4871498d67b936df8ab360b886aabec21a1dcb187a73aa2ec"; + src = nixpkgs.fetchgit { + url = "https://stuebinm.eu/git/conftrack"; + rev = "7349f170a1e33c449f73d05f206872ebc1f334de"; + hash = "sha256-v1hs7bNLubVwNfNeJBiuR820urXiA2iwZMsxbpwHJ/M="; + }; revision = "1"; editedCabalFile = "0wx03gla2x51llwng995snp9lyg1msnyf0337hd1ph9874zcadxr"; libraryHaskellDepends = [ diff --git a/lib/Yesod/Auth/Uffd.hs b/lib/Yesod/Auth/Uffd.hs index 8dd0548..4d5e5af 100644 --- a/lib/Yesod/Auth/Uffd.hs +++ b/lib/Yesod/Auth/Uffd.hs @@ -64,7 +64,7 @@ uffdClient url clientId clientSecret = } where oauth2 = OAuth2 { oauth2ClientId = clientId - , oauth2ClientSecret = {- Just -} clientSecret + , oauth2ClientSecret = Just clientSecret , oauth2AuthorizeEndpoint = url { uriPath = "/oauth2/authorize" } , oauth2TokenEndpoint = |
