mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 00:36:25 +00:00
20 lines
398 B
Text
20 lines
398 B
Text
|
cabal-version: 2.4
|
||
|
name: foo-bar
|
||
|
version: 0.1.0
|
||
|
license: MIT
|
||
|
|
||
|
library
|
||
|
exposed-modules: FooBar
|
||
|
hs-source-dirs: src
|
||
|
default-language: Haskell2010
|
||
|
build-depends:
|
||
|
base >= 4.15
|
||
|
|
||
|
executable foo-bar
|
||
|
main-is: Main.hs
|
||
|
hs-source-dirs: app
|
||
|
default-language: Haskell2010
|
||
|
build-depends:
|
||
|
base >= 4.15,
|
||
|
foo-bar
|