-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.cabal
36 lines (33 loc) · 1.12 KB
/
scripts.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: scripts
version: 0.1.0.0
synopsis: Haskell scripts using `Turtle` to replace my bash scripts
license: BSD3
author: Ben Pence
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable android-copy
main-is: android-copy.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, foldl
, system-filepath
, turtle
default-language: Haskell2010
executable volume
main-is: volume.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, turtle
default-language: Haskell2010
executable rename-by-exif
main-is: rename-by-exif.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, directory
, mtl
, optional-args
, system-filepath
, text
, turtle
default-language: Haskell2010