I hereby claim:
- I am Piezoid on github.
- I am piezoid (https://keybase.io/piezoid) on keybase.
- I have a public key whose fingerprint is 5A6B 70AB 5A8D 664B 0C0D E161 14DA 4356 34DA 6FAD
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # Maintainer: Lukas Jirkovsky <l.jirkovsky@gmail.com> | |
| # Contributor: Brandon Andrews <bsa@bsa.isa-geek.com> | |
| pkgname=pfstools | |
| pkgver=2.0.0 | |
| pkgrel=1 | |
| pkgdesc="Set of command line programs for reading, writing and manipulating high-dynamic range (HDR) images" | |
| arch=('i686' 'x86_64') | |
| url="http://pfstools.sourceforge.net/" | |
| license=('LGPL2.1') | |
| depends=('gcc-libs') |
| {-# LANGUAGE RankNTypes #-} | |
| {-# LANGUAGE PatternSynonyms #-} | |
| import Control.Applicative (Applicative(..)) | |
| import Control.Monad (ap) | |
| import Data.Function (fix) | |
| -- | Original AST, as described in "Functional Programming with Structured |
| -- ----------------------------------------------------------------------------- | |
| -- Immutable version (IntMap) | |
| -- ----------------------------------------------------------------------------- | |
| module Main (main) where | |
| import Control.Applicative | |
| import Data.Maybe (fromMaybe) |
| {-# LANGUAGE OverloadedStrings #-} | |
| module Main (main) where | |
| import Control.Applicative ((<$>)) | |
| import Data.List | |
| import Data.Maybe (mapMaybe) | |
| import Data.Word (Word) | |
| import Data.Char (isSpace) |
| {-# LANGUAGE TupleSections #-} | |
| module Main (main) where | |
| -- | Build a default.hoo database for fully local use. | |
| -- | |
| -- It uses the .txt hoogle database generated by haddock. In order to build them | |
| -- with cabal, you have to enable in .cabal | |
| -- | |
| -- documentation: True |