├── .gitignore ├── LICENSE ├── README.md ├── default.nix ├── derivations.nix ├── flake.lock ├── flake.nix ├── macos └── default.nix ├── nixos └── default.nix ├── shell.nix └── test ├── Main.hs ├── hie.yaml ├── shell.nix └── test.cabal /.gitignore: -------------------------------------------------------------------------------- 1 | **/dist-newstyle/* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkachmar/easy-hls-nix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkachmar/easy-hls-nix/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkachmar/easy-hls-nix/HEAD/default.nix -------------------------------------------------------------------------------- /derivations.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkachmar/easy-hls-nix/HEAD/derivations.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkachmar/easy-hls-nix/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkachmar/easy-hls-nix/HEAD/flake.nix -------------------------------------------------------------------------------- /macos/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkachmar/easy-hls-nix/HEAD/macos/default.nix -------------------------------------------------------------------------------- /nixos/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkachmar/easy-hls-nix/HEAD/nixos/default.nix -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkachmar/easy-hls-nix/HEAD/shell.nix -------------------------------------------------------------------------------- /test/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkachmar/easy-hls-nix/HEAD/test/Main.hs -------------------------------------------------------------------------------- /test/hie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkachmar/easy-hls-nix/HEAD/test/hie.yaml -------------------------------------------------------------------------------- /test/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkachmar/easy-hls-nix/HEAD/test/shell.nix -------------------------------------------------------------------------------- /test/test.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkachmar/easy-hls-nix/HEAD/test/test.cabal --------------------------------------------------------------------------------