Skip to content

Instantly share code, notes, and snippets.

@23Skidoo
Last active November 3, 2015 20:59
Show Gist options
  • Save 23Skidoo/57b340292ee9731f6c96 to your computer and use it in GitHub Desktop.
Save 23Skidoo/57b340292ee9731f6c96 to your computer and use it in GitHub Desktop.
Test project for Cabal issue #2908, see https://github.com/haskell/cabal/issues/2908
.cabal-sandbox
cabal.sandbox.config
dist/

Revision history for pelda

0.1.0.0 -- YYYY-mm-dd

  • First version. Released on an unsuspecting world.
Copyright (c) 2015, Mikhail Glushenkov
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of Mikhail Glushenkov nor the names of other
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
module Main where
import Példa
main :: IO ()
main = putStrLn példa
name: pelda
version: 0.1.0.0
synopsis: pelda
description: pelda pelda
license: BSD3
license-file: LICENSE
author: Mikhail Glushenkov
maintainer: [email protected]
-- copyright:
category: Game
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
executable példa
main-is: Main.hs
other-modules: Példa
-- other-extensions:
build-depends: base >=4.8 && <4.9
-- hs-source-dirs:
default-language: Haskell2010
module Példa where
példa :: String
példa = "példa"
import Distribution.Simple
main = defaultMain
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment