Adjust to type change of TupE in Template Haskell 2.16. diff --git a/src/Ganeti/THH/Types.hs b/src/Ganeti/THH/Types.hs --- a/src/Ganeti/THH/Types.hs +++ b/src/Ganeti/THH/Types.hs @@ -123,4 +123,11 @@ curryN n = do f <- newName "f" ps <- replicateM n (newName "x") return $ LamE (VarP f : map VarP ps) - (AppE (VarE f) (TupE $ map VarE ps)) + (AppE (VarE f) (nonUnaryTupE $ map VarE ps)) + where + nonUnaryTupE :: [Exp] -> Exp + nonUnaryTupE es = TupE $ +#if MIN_VERSION_template_haskell(2,16,0) + map Just +#endif + es ame='id' value='f814d33cbd3bd6f4a6c330ed0e93a214b887f401'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/keys/rsa.pub
AgeCommit message (Expand)Author
2021-12-22tests: Move keys into ./tests/keys/ and add a third ed25519 key....The third key will be used in an upcoming commit. Rename public keys to .pub. * guix/tests/gnupg.scm (%ed25519-3-public-key-file): New variable. (%ed25519-3-secret-key-file): New variable. (%ed25519-2-public-key-file): Renamed from %ed25519bis-public-key-file. (%ed25519-2-secret-key-file): Renamed from %ed25519bis-secret-key-file. * tests/keys/ed25519-3.key: New file. * tests/keys/ed25519-3.sec: New file. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Attila Lendvai