Switch to cabal
This commit is contained in:
parent
505fdfaaec
commit
46b60a9944
4 changed files with 122 additions and 19 deletions
25
.gitignore
vendored
25
.gitignore
vendored
|
@ -1,6 +1,25 @@
|
|||
dist
|
||||
dist-*
|
||||
cabal-dev
|
||||
*.o
|
||||
*.hi
|
||||
*.hie
|
||||
*.chi
|
||||
*.chs.h
|
||||
*.dyn_o
|
||||
*.dyn_hi
|
||||
.hpc
|
||||
.hsenv
|
||||
.cabal-sandbox/
|
||||
cabal.sandbox.config
|
||||
*.prof
|
||||
*.aux
|
||||
*.hp
|
||||
*.eventlog
|
||||
.stack-work/
|
||||
cabal.project.local
|
||||
cabal.project.local~
|
||||
.HTF/
|
||||
.ghc.environment.*
|
||||
.vscode/
|
||||
logs/
|
||||
myriad.cabal
|
||||
config.dhall
|
||||
myriad
|
||||
|
|
100
myriad.cabal
Normal file
100
myriad.cabal
Normal file
|
@ -0,0 +1,100 @@
|
|||
cabal-version: 1.12
|
||||
|
||||
-- This file has been generated from package.yaml by hpack version 0.31.2.
|
||||
--
|
||||
-- see: https://github.com/sol/hpack
|
||||
--
|
||||
-- hash: 04a15c51f0ad270f323a3edd67bc229f0a0796226ff53a118338ec643b22b3c1
|
||||
|
||||
name: myriad
|
||||
version: 0.1.0.0
|
||||
synopsis: Arbitrary code execution in Docker
|
||||
description: Please see the README
|
||||
category: Server
|
||||
homepage: https://github.com/1computer1/myriad#readme
|
||||
bug-reports: https://github.com/1computer1/myriad/issues
|
||||
author: 1Computer1
|
||||
maintainer: onecomputer00@gmail.com
|
||||
copyright: 2019 1Computer1
|
||||
license: MIT
|
||||
license-file: LICENSE
|
||||
build-type: Simple
|
||||
extra-source-files:
|
||||
README.md
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
location: https://github.com/1computer1/myriad
|
||||
|
||||
library
|
||||
exposed-modules:
|
||||
Myriad
|
||||
Myriad.Core
|
||||
Myriad.Docker
|
||||
Myriad.Server
|
||||
other-modules:
|
||||
Paths_myriad
|
||||
hs-source-dirs:
|
||||
src
|
||||
default-extensions: BlockArguments ConstraintKinds DataKinds DerivingStrategies DeriveFunctor DeriveGeneric FlexibleContexts FlexibleInstances FunctionalDependencies GADTs GeneralizedNewtypeDeriving LambdaCase MultiParamTypeClasses MultiWayIf NamedFieldPuns OverloadedStrings PatternSynonyms PolyKinds RankNTypes ScopedTypeVariables StandaloneDeriving TupleSections TypeApplications TypeOperators TypeFamilies ViewPatterns
|
||||
build-depends:
|
||||
aeson
|
||||
, async
|
||||
, base
|
||||
, bytestring
|
||||
, containers
|
||||
, dhall
|
||||
, filepath
|
||||
, lifted-async
|
||||
, lifted-base
|
||||
, monad-control
|
||||
, monad-logger
|
||||
, mtl
|
||||
, servant
|
||||
, servant-server
|
||||
, snowflake
|
||||
, string-conversions
|
||||
, text
|
||||
, time
|
||||
, transformers
|
||||
, transformers-base
|
||||
, typed-process
|
||||
, wai
|
||||
, warp
|
||||
default-language: Haskell2010
|
||||
|
||||
executable myriad
|
||||
main-is: Main.hs
|
||||
other-modules:
|
||||
Paths_myriad
|
||||
hs-source-dirs:
|
||||
app
|
||||
default-extensions: BlockArguments ConstraintKinds DataKinds DerivingStrategies DeriveFunctor DeriveGeneric FlexibleContexts FlexibleInstances FunctionalDependencies GADTs GeneralizedNewtypeDeriving LambdaCase MultiParamTypeClasses MultiWayIf NamedFieldPuns OverloadedStrings PatternSynonyms PolyKinds RankNTypes ScopedTypeVariables StandaloneDeriving TupleSections TypeApplications TypeOperators TypeFamilies ViewPatterns
|
||||
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
|
||||
build-depends:
|
||||
aeson
|
||||
, async
|
||||
, base
|
||||
, bytestring
|
||||
, containers
|
||||
, dhall
|
||||
, filepath
|
||||
, lifted-async
|
||||
, lifted-base
|
||||
, monad-control
|
||||
, monad-logger
|
||||
, mtl
|
||||
, myriad
|
||||
, optparse-applicative
|
||||
, servant
|
||||
, servant-server
|
||||
, snowflake
|
||||
, string-conversions
|
||||
, text
|
||||
, time
|
||||
, transformers
|
||||
, transformers-base
|
||||
, typed-process
|
||||
, wai
|
||||
, warp
|
||||
default-language: Haskell2010
|
|
@ -1,4 +0,0 @@
|
|||
resolver: lts-13.27
|
||||
|
||||
packages:
|
||||
- .
|
|
@ -1,12 +0,0 @@
|
|||
# This file was autogenerated by Stack.
|
||||
# You should not edit this file by hand.
|
||||
# For more information, please see the documentation at:
|
||||
# https://docs.haskellstack.org/en/stable/lock_files
|
||||
|
||||
packages: []
|
||||
snapshots:
|
||||
- completed:
|
||||
size: 500539
|
||||
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/13/27.yaml
|
||||
sha256: 690db832392afe55733b4c7023fd29b1b1c660ee42f1fb505b86b07394ca994e
|
||||
original: lts-13.27
|
Loading…
Reference in a new issue