mirror of
https://github.com/commercialhaskell/stackage-server.git
synced 2026-01-12 20:28:32 +01:00
14 lines
335 B
Haskell
14 lines
335 B
Haskell
module Handler.StackageIndex where
|
|
|
|
import Import
|
|
import Stackage.Database
|
|
|
|
getStackageIndexR :: SnapName -> Handler TypedContent
|
|
getStackageIndexR slug = do
|
|
-- Insecure, courtesy of cabal-install
|
|
redirect $ concat
|
|
[ "http://haddock.stackage.org/package-index/"
|
|
, toPathPiece slug
|
|
, ".tar.gz"
|
|
]
|