├── .gitignore ├── CabbageDown ├── CabbageDown.cabal ├── LICENSE ├── Main.hs └── Setup.hs ├── Nix-notes.org ├── README.md ├── TestCabbage ├── LICENSE ├── Setup.hs ├── TestCabbage.cabal └── TestCabbage.hs ├── cabbage └── experiments ├── a-cabal.config └── b-cabal.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acowley/cabbage/HEAD/.gitignore -------------------------------------------------------------------------------- /CabbageDown/CabbageDown.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acowley/cabbage/HEAD/CabbageDown/CabbageDown.cabal -------------------------------------------------------------------------------- /CabbageDown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acowley/cabbage/HEAD/CabbageDown/LICENSE -------------------------------------------------------------------------------- /CabbageDown/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acowley/cabbage/HEAD/CabbageDown/Main.hs -------------------------------------------------------------------------------- /CabbageDown/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /Nix-notes.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acowley/cabbage/HEAD/Nix-notes.org -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acowley/cabbage/HEAD/README.md -------------------------------------------------------------------------------- /TestCabbage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acowley/cabbage/HEAD/TestCabbage/LICENSE -------------------------------------------------------------------------------- /TestCabbage/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /TestCabbage/TestCabbage.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acowley/cabbage/HEAD/TestCabbage/TestCabbage.cabal -------------------------------------------------------------------------------- /TestCabbage/TestCabbage.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acowley/cabbage/HEAD/TestCabbage/TestCabbage.hs -------------------------------------------------------------------------------- /cabbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acowley/cabbage/HEAD/cabbage -------------------------------------------------------------------------------- /experiments/a-cabal.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acowley/cabbage/HEAD/experiments/a-cabal.config -------------------------------------------------------------------------------- /experiments/b-cabal.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acowley/cabbage/HEAD/experiments/b-cabal.config --------------------------------------------------------------------------------