Skip to content

Instantly share code, notes, and snippets.

@Swendude
Created July 30, 2022 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Swendude/c3b6f639ba06a9277d2110dc849ac59c to your computer and use it in GitHub Desktop.
Save Swendude/c3b6f639ba06a9277d2110dc849ac59c to your computer and use it in GitHub Desktop.
❯ cabal test
Resolving dependencies...
cabal: Could not resolve dependencies:
[__0] trying: stylegenr-0.1.0.0 (user goal)
[__1] rejecting: stylegenr:!test (constraint from config file, command line
flag, or user target requires opposite flag selection)
[__1] rejecting: stylegenr:*test (requires library from stylegenr, but the
component does not exist)
[__1] fail (backjumping, conflict set: stylegenr, stylegenr:test)
After searching the rest of the dependency tree exhaustively, these were the
goals I've had most trouble fulfilling: stylegenr, stylegenr:test
cabal-version: 2.4
name: stylegenr
version: 0.1.0.0
build-type: Simple
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
license: WTFPL
license-file: LICENSE
author: Swen Mulderij
maintainer: swenmulderij@gmail.com
-- A copyright notice.
-- copyright:
-- category:
extra-source-files: CHANGELOG.md
executable stylegenr
main-is: Main.hs
-- Modules included in this executable, other than Main.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends:
base ^>=4.14.3.0,
haskell-say ^>=1.0.0.0
hs-source-dirs: app
default-language: Haskell2010
Test-suite tests
ghc-options: -Wall
type: exitcode-stdio-1.0
main-is: Tests.hs
hs-source-dirs: tests
build-depends: stylegenr, base, tasty, tasty-hunit
default-language: Haskell2010
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment